Skip to content

Commit

Permalink
Add support for Python 3.9, drop Python 3.4
Browse files Browse the repository at this point in the history
Add support for Python 3.9 since it was officially released in October
and drop support for Python 3.4 since it is end-of-life (EOL).
  • Loading branch information
Jason Mobarak authored and adrienverge committed Dec 4, 2020
1 parent 0f9dffd commit 22335b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ python:
- 3.6
- 3.7
- 3.8
- 3.9
- nightly
env:
- REMOVE_LOCALES=false
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ classifiers =
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3
Programming Language :: Python :: 3.4
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Software Development
Topic :: Software Development :: Debuggers
Topic :: Software Development :: Quality Assurance
Expand All @@ -48,7 +48,7 @@ project_urls =
[options]
packages = find:

python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*

include_package_data = True
install_requires =
Expand Down

0 comments on commit 22335b2

Please sign in to comment.