Skip to content

Commit 1813332

Browse files
authored
Merge pull request #32 from blues/brandon-drop-python-3.5-support
chore: remove v3.5 support; add v3.9 support
2 parents 10faebe + 474e099 commit 1813332

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: [3.5, 3.6, 3.7, 3.8]
18+
python-version: [3.6, 3.7, 3.8, 3.9]
1919

2020
steps:
2121
- name: Send building notification

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
license="MIT",
1717
classifiers=[
1818
"Programming Language :: Python",
19-
"Programming Language :: Python :: 3.5",
2019
"Programming Language :: Python :: 3.6",
2120
"Programming Language :: Python :: 3.7",
2221
"Programming Language :: Python :: 3.8",
22+
"Programming Language :: Python :: 3.9",
2323
"License :: OSI Approved :: MIT License",
2424
"Operating System :: OS Independent",
2525
"Intended Audience :: Developers",
2626
"Natural Language :: English",
2727
],
2828
install_requires=["filelock"],
29-
python_requires='>=3.5',
29+
python_requires='>=3.6',
3030
)

0 commit comments

Comments
 (0)