Skip to content

Commit a7baed4

Browse files
authored
Add support for Python 3.9 (#708)
* 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
1 parent 2c3d8e1 commit a7baed4

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
types:
2424
strategy:
2525
matrix:
26-
python: [3.6, 3.7, 3.8]
26+
python: [3.6, 3.7, 3.8, 3.9]
2727
runs-on: ubuntu-latest
2828
steps:
2929
- uses: actions/checkout@v2
@@ -38,7 +38,7 @@ jobs:
3838
test:
3939
strategy:
4040
matrix:
41-
python: [3.6, 3.7, 3.8]
41+
python: [3.6, 3.7, 3.8, 3.9]
4242
platform: [ubuntu-latest, macos-latest, windows-latest]
4343
runs-on: ${{ matrix.platform }}
4444
steps:

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,3 +31,4 @@ Devesh Kumar Singh <[email protected]>
3131
Yesha Maggi <[email protected]>
3232
Cyril de Catheu <[email protected]> (https://catheu.tech/)
3333
Thomas Miedema <[email protected]>
34+
Hugo van Kemenade (https://github.com/hugovk)

docs/contributing.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,9 @@ To pass options to ``pytest``, e.g. the name of a test, run:
107107
108108
tox -e py -- tests/test_upload.py::test_exception_for_http_status
109109
110-
Twine is continuously tested against Python 3.6, 3.7, and 3.8 using `GitHub
111-
Actions`_. To run the tests against a specific version, e.g. Python 3.6, you
112-
will need it installed on your machine. Then, run:
110+
Twine is continuously tested against Python 3.6, 3.7, 3.8, and 3.9 using
111+
`GitHub Actions`_. To run the tests against a specific version, e.g. Python
112+
3.6, you will need it installed on your machine. Then, run:
113113

114114
.. code-block:: console
115115

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ classifiers =
2525
Programming Language :: Python :: 3.6
2626
Programming Language :: Python :: 3.7
2727
Programming Language :: Python :: 3.8
28+
Programming Language :: Python :: 3.9
2829
Programming Language :: Python :: Implementation :: CPython
2930

3031
[options]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
minversion = 2.4
3-
envlist = lint,types,py{36,37,38},integration,docs
3+
envlist = lint,types,py{36,37,38,39},integration,docs
44

55
[testenv]
66
deps =

0 commit comments

Comments
 (0)