Skip to content

Commit

Permalink
Drop Python 3.6 support (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
shimizukawa committed Feb 5, 2023
1 parent 30f17cb commit 1f0db64
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, '3.10', '3.11', '3.12-dev']
python-version: [3.7, 3.8, 3.9, '3.10', '3.11', '3.12-dev']
max-parallel: 1

steps:
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -61,7 +60,7 @@
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
python_requires=">=3.6",
python_requires=">=3.7",
extras_require=extras_require,
entry_points="""\
[console_scripts]
Expand Down
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[tox]
envlist =
py{36,37,38,39,310,311,312-dev},
py{37,38,39,310,311,312-dev},
flake8,
mypy

[gh-actions]
python =
3.6: py36
3.7: py37
3.8: py38
3.9: py39
Expand Down

0 comments on commit 1f0db64

Please sign in to comment.