Skip to content

Commit

Permalink
feat: 🎸 python_minifier support 3.12 & 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ZhaoQi99 committed Nov 29, 2024
1 parent 5470c2c commit ad97028
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyencrypt/encrypt.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
try:
import python_minifier
except ImportError as exc:
if sys.version_info.minor < 12:
if sys.version_info.minor < 14:
raise ImportError("Couldn't import python_minifier.") from exc

python_minifier = None
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ keywords = python-encrypt, import-hook
install_requires =
Cython >= 0.29.30
pycryptodome >= 3.14.1
python-minifier >= 2.6.0; python_version < '3.12'
python-minifier >= 2.6.0; python_version < '3.14'
click
setuptools >= 66.1.0; python_version >= '3.12'
setuptools <= 60.9.0; python_version < '3.12'
Expand Down

0 comments on commit ad97028

Please sign in to comment.