We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59a4968 commit cfb6b32Copy full SHA for cfb6b32
.travis.yml
@@ -1,10 +1,10 @@
1
language: python
2
matrix:
3
include:
4
- - python: 3.5
5
- python: 3.6
6
- python: 3.7
7
- python: 3.8
+ - python: 3.9
8
cache: pip
9
install:
10
- if [[ $TRAVIS_PYTHON_VERSION == 3.7 ]]; then pip install black; fi
setup.py
@@ -55,7 +55,7 @@ def run_tests(self):
55
extras_require={"test": tests_require},
56
tests_require=tests_require,
57
include_package_data=True,
58
- python_requires=">=3.5",
+ python_requires=">=3.6",
59
classifiers=[
60
"Intended Audience :: Developers",
61
"Intended Audience :: System Administrators",
@@ -64,10 +64,10 @@ def run_tests(self):
64
"Development Status :: 5 - Production/Stable",
65
"Natural Language :: English",
66
"Programming Language :: Python :: 3",
67
- "Programming Language :: Python :: 3.5",
68
"Programming Language :: Python :: 3.6",
69
"Programming Language :: Python :: 3.7",
70
"Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
71
"Topic :: Software Development :: Libraries :: Python Modules",
72
],
73
)
0 commit comments