Skip to content

Commit cfb6b32

Browse files
authored
Drop 3.5 (#43)
1 parent 59a4968 commit cfb6b32

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
language: python
22
matrix:
33
include:
4-
- python: 3.5
54
- python: 3.6
65
- python: 3.7
76
- python: 3.8
7+
- python: 3.9
88
cache: pip
99
install:
1010
- if [[ $TRAVIS_PYTHON_VERSION == 3.7 ]]; then pip install black; fi

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def run_tests(self):
5555
extras_require={"test": tests_require},
5656
tests_require=tests_require,
5757
include_package_data=True,
58-
python_requires=">=3.5",
58+
python_requires=">=3.6",
5959
classifiers=[
6060
"Intended Audience :: Developers",
6161
"Intended Audience :: System Administrators",
@@ -64,10 +64,10 @@ def run_tests(self):
6464
"Development Status :: 5 - Production/Stable",
6565
"Natural Language :: English",
6666
"Programming Language :: Python :: 3",
67-
"Programming Language :: Python :: 3.5",
6867
"Programming Language :: Python :: 3.6",
6968
"Programming Language :: Python :: 3.7",
7069
"Programming Language :: Python :: 3.8",
70+
"Programming Language :: Python :: 3.9",
7171
"Topic :: Software Development :: Libraries :: Python Modules",
7272
],
7373
)

0 commit comments

Comments
 (0)