Skip to content
This repository was archived by the owner on Aug 8, 2025. It is now read-only.

Commit aa84adf

Browse files
committed
Drop python 3.6, add python 3.10 support
1 parent 6edcd89 commit aa84adf

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

pyproject.toml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,28 +15,29 @@ classifiers = ['Development Status :: 5 - Production/Stable',
1515
'Operating System :: OS Independent',
1616
'Programming Language :: Python',
1717
'Programming Language :: Python :: 3',
18-
'Programming Language :: Python :: 3.6',
1918
'Programming Language :: Python :: 3.7',
2019
'Programming Language :: Python :: 3.8',
2120
'Programming Language :: Python :: 3.9',
22-
'Topic :: Internet :: WWW/HTTP',
21+
'Programming Language :: Python :: 3.10',
22+
'Topic :: Internet :: WWW/HTTP',
2323
'Topic :: Software Development :: Libraries :: Python Modules',
2424
'Topic :: Utilities']
2525
packages = [
2626
{ include = "backoff" },
2727
]
2828

2929
[tool.poetry.dependencies]
30-
python = "^3.6"
30+
python = "^3.7"
3131

3232
[tool.poetry.dev-dependencies]
33-
flake8 = "^3.9.0"
34-
pytest = "^6.2.2"
35-
pytest-cov = "^2.11.1"
36-
pytest-asyncio = "^0.14.0"
37-
mypy = "^0.812"
33+
flake8 = "^4.0.1"
34+
mypy = "^0.942"
35+
pytest = "^7.1.2"
36+
pytest-asyncio = "^0.18.3"
37+
pytest-cov = "^3.0.0"
3838
requests = "^2.26.0"
39-
responses = "^0.13.4"
39+
responses = "^0.20.0"
40+
types-requests = "^2.27.20"
4041

4142
[build-system]
4243
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)