Skip to content

Commit a59bd09

Browse files
committed
Bumping cryptography which also drops Python 3.7
1 parent e6997a9 commit a59bd09

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
runs-on: ubuntu-22.04
2929
strategy:
3030
matrix:
31-
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
31+
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']
3232

3333
steps:
3434
- uses: actions/checkout@v4

setup.cfg

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ classifiers =
1818
Programming Language :: Python
1919
Programming Language :: Python :: 3 :: Only
2020
Programming Language :: Python :: 3
21-
Programming Language :: Python :: 3.7
2221
Programming Language :: Python :: 3.8
2322
Programming Language :: Python :: 3.9
2423
Programming Language :: Python :: 3.10
@@ -39,7 +38,7 @@ project_urls =
3938
include_package_data = False # We used to ship LICENSE, but our __init__.py already mentions MIT
4039
packages = find:
4140
# Our test pipeline currently still covers Py37
42-
python_requires = >=3.7
41+
python_requires = >=3.8
4342
install_requires =
4443
requests>=2.0.0,<3
4544

@@ -53,7 +52,7 @@ install_requires =
5352
# And we will use the cryptography (X+3).0.0 as the upper bound,
5453
# based on their latest deprecation policy
5554
# https://cryptography.io/en/latest/api-stability/#deprecation
56-
cryptography>=2.5,<48
55+
cryptography>=2.5,<49
5756

5857

5958
[options.extras_require]

0 commit comments

Comments
 (0)