diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 95cafb9..3bc2b18 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,6 +25,11 @@ jobs: with: python-version: 3.7 + - name: Set up Python 3.8 + uses: actions/setup-python@v1 + with: + python-version: 3.8 + - name: Install CI dependencies run: | python -m pip install --upgrade pip diff --git a/setup.py b/setup.py index c991698..49975f8 100644 --- a/setup.py +++ b/setup.py @@ -59,6 +59,7 @@ def get_version(): 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3 :: Only', ], ) diff --git a/tox.ini b/tox.ini index 4261492..8e0938b 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py35,py36,py37,py36-lint +envlist = py35,py36,py37,py38,py36-lint [testenv] commands = pip install -r requirements-dev.txt