Skip to content

Commit ca44643

Browse files
committed
fix: vcr/urllib versions
1 parent 8ced35b commit ca44643

File tree

2 files changed

+10
-11
lines changed

2 files changed

+10
-11
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
pythonversion: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
25+
pythonversion: ['3.9', '3.10', '3.11', '3.12', '3.13']
2626
steps:
2727
- uses: actions/checkout@v4
2828
- uses: actions/setup-python@v5

setup.py

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@
99
]
1010

1111
DEV_REQUIREMENTS = [
12-
"bandit==1.7.*", # v1.8 requires Python 3.9
13-
"black==23.*",
12+
"bandit==1.8.*",
13+
"black==25.*",
1414
"build==1.2.*",
15-
"flake8==5.*", # v6 requires Python 3.9
16-
"isort==5.*", # v6 requires Python 3.9
17-
"mypy==1.14.*", # v1.15 requires Python 3.9
18-
"pdoc==14.*", # v15 requires Python 3.9
19-
"pytest-cov==5.*", # v6 requires Python 3.9
15+
"flake8==6.*",
16+
"isort==6.*",
17+
"mypy==1.15.*",
18+
"pdoc==15.*",
19+
"pytest-cov==6.*",
2020
"pytest-vcr==1.*",
2121
"pytest==8.*",
22-
"vcrpy==6.*", # v7 requires Python 3.9
22+
"vcrpy==7.*",
2323
]
2424

2525
with open("README.md", encoding="utf-8") as f:
@@ -54,12 +54,11 @@
5454
"Tracker": "https://github.com/EasyPost/easypost-python/issues",
5555
"Source": "https://github.com/EasyPost/easypost-python",
5656
},
57-
python_requires=">=3.8, <4",
57+
python_requires=">=3.9, <4",
5858
classifiers=[
5959
"Development Status :: 5 - Production/Stable",
6060
"Environment :: Web Environment",
6161
"Programming Language :: Python",
62-
"Programming Language :: Python :: 3.8",
6362
"Programming Language :: Python :: 3.9",
6463
"Programming Language :: Python :: 3.10",
6564
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)