Skip to content

Commit

Permalink
Add support for Python 3.9 (#708)
Browse files Browse the repository at this point in the history
* Add support for Python 3.9

* Add Trove classifier

* Add TODO for 3.9 when lxml wheels are available

* Add 3.9 now lxml wheels are available
  • Loading branch information
hugovk committed Oct 18, 2020
1 parent 2c3d8e1 commit a7baed4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Expand Up @@ -23,7 +23,7 @@ jobs:
types:
strategy:
matrix:
python: [3.6, 3.7, 3.8]
python: [3.6, 3.7, 3.8, 3.9]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -38,7 +38,7 @@ jobs:
test:
strategy:
matrix:
python: [3.6, 3.7, 3.8]
python: [3.6, 3.7, 3.8, 3.9]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand Down
1 change: 1 addition & 0 deletions AUTHORS
Expand Up @@ -31,3 +31,4 @@ Devesh Kumar Singh <deveshkusingh@gmail.com>
Yesha Maggi <yesha.maggic@gmail.com>
Cyril de Catheu <cdecatheu@gmail.com> (https://catheu.tech/)
Thomas Miedema <thomasmiedema@gmail.com>
Hugo van Kemenade (https://github.com/hugovk)
6 changes: 3 additions & 3 deletions docs/contributing.rst
Expand Up @@ -107,9 +107,9 @@ To pass options to ``pytest``, e.g. the name of a test, run:
tox -e py -- tests/test_upload.py::test_exception_for_http_status
Twine is continuously tested against Python 3.6, 3.7, and 3.8 using `GitHub
Actions`_. To run the tests against a specific version, e.g. Python 3.6, you
will need it installed on your machine. Then, run:
Twine is continuously tested against Python 3.6, 3.7, 3.8, and 3.9 using
`GitHub Actions`_. To run the tests against a specific version, e.g. Python
3.6, you will need it installed on your machine. Then, run:

.. code-block:: console
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Expand Up @@ -25,6 +25,7 @@ classifiers =
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: Implementation :: CPython

[options]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
minversion = 2.4
envlist = lint,types,py{36,37,38},integration,docs
envlist = lint,types,py{36,37,38,39},integration,docs

[testenv]
deps =
Expand Down

0 comments on commit a7baed4

Please sign in to comment.