Skip to content

Commit 8ddd79c

Browse files
committed
drop support for Python < 3.9
1 parent 1383ae7 commit 8ddd79c

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

.circleci/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,8 @@ workflows:
3939
matrix:
4040
parameters:
4141
pythonversion:
42-
- '3.6'
43-
- '3.7'
44-
- '3.8'
4542
- '3.9'
43+
- '3.10'
44+
- '3.11'
45+
- '3.12'
46+
- '3.13'

pyproject.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@ classifiers = [
1414
"License :: OSI Approved :: Apache Software License",
1515
"Operating System :: OS Independent",
1616
"Programming Language :: Python",
17-
"Programming Language :: Python :: 3.6",
18-
"Programming Language :: Python :: 3.7",
19-
"Programming Language :: Python :: 3.8",
17+
"Programming Language :: Python :: 3.9",
18+
"Programming Language :: Python :: 3.10",
19+
"Programming Language :: Python :: 3.11",
20+
"Programming Language :: Python :: 3.12",
21+
"Programming Language :: Python :: 3.13",
2022
"Topic :: Internet :: WWW/HTTP",
2123
"Topic :: Security",
2224
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -26,7 +28,7 @@ dependencies = [
2628
"cryptography >= 3.1, != 3.4.0",
2729
]
2830

29-
requires-python = ">= 3.6"
31+
requires-python = ">= 3.9"
3032

3133
authors = [
3234
{name = "Kohei YOSHIDA", email = "kohei.yoshida@gehirn.co.jp"},

0 commit comments

Comments
 (0)