Skip to content

Commit 71c3897

Browse files
authored
feat: 🎸 support Python 3.11 (#37)
Closes: #35
1 parent 64ef241 commit 71c3897

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
fail-fast: false
2121
matrix:
2222
os: [ubuntu-20.04, macos-12, windows-2022]
23-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
23+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
2424
runs-on: ${{ matrix.os }}
2525
steps:
2626
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
22
requires = [
3-
"setuptools >= 42, < 58",
3+
"setuptools >= 42",
44
"wheel"
55
]
66
build-backend = "setuptools.build_meta"

setup.cfg

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ classifiers =
1919
Programming Language :: Python :: 3.8
2020
Programming Language :: Python :: 3.9
2121
Programming Language :: Python :: 3.10
22+
Programming Language :: Python :: 3.11
2223
Programming Language :: Python :: Implementation :: CPython
2324
Environment :: Console
2425
license_files = LICENSE
@@ -29,11 +30,11 @@ keywords = python-encrypt, import-hook
2930

3031
[options]
3132
install_requires =
32-
Cython >= 0.29.24
33+
Cython >= 0.29.30
3334
pycryptodome >= 3.14.1
3435
python-minifier >= 2.6.0
3536
click
36-
python_requires = >=3.6,<3.11
37+
python_requires = >=3.6,<3.12
3738
packages = find:
3839
# package_dir =
3940
# = src

0 commit comments

Comments
 (0)