Skip to content

Commit

Permalink
feat: 🎸 support Python 3.11 (#37)
Browse files Browse the repository at this point in the history
Closes: #35
  • Loading branch information
ZhaoQi99 authored Aug 27, 2024
1 parent 64ef241 commit 71c3897
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-20.04, macos-12, windows-2022]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools >= 42, < 58",
"setuptools >= 42",
"wheel"
]
build-backend = "setuptools.build_meta"
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ classifiers =
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Environment :: Console
license_files = LICENSE
Expand All @@ -29,11 +30,11 @@ keywords = python-encrypt, import-hook

[options]
install_requires =
Cython >= 0.29.24
Cython >= 0.29.30
pycryptodome >= 3.14.1
python-minifier >= 2.6.0
click
python_requires = >=3.6,<3.11
python_requires = >=3.6,<3.12
packages = find:
# package_dir =
# = src
Expand Down

0 comments on commit 71c3897

Please sign in to comment.