Skip to content

Commit c3415b7

Browse files
committed
feat: 🎸 python_minifier support 3.12 & 3.13
1 parent cc139a6 commit c3415b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyencrypt/encrypt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
try:
88
import python_minifier
99
except ImportError as exc:
10-
if sys.version_info.minor < 12:
10+
if sys.version_info.minor < 14:
1111
raise ImportError("Couldn't import python_minifier.") from exc
1212

1313
python_minifier = None

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ keywords = python-encrypt, import-hook
3333
install_requires =
3434
Cython >= 0.29.30
3535
pycryptodome >= 3.14.1
36-
python-minifier >= 2.6.0; python_version < '3.12'
36+
python-minifier >= 2.6.0; python_version < '3.14'
3737
click
3838
setuptools >= 66.1.0; python_version >= '3.12'
3939
setuptools <= 60.9.0; python_version < '3.12'

0 commit comments

Comments
 (0)