We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc139a6 commit c3415b7Copy full SHA for c3415b7
pyencrypt/encrypt.py
@@ -7,7 +7,7 @@
7
try:
8
import python_minifier
9
except ImportError as exc:
10
- if sys.version_info.minor < 12:
+ if sys.version_info.minor < 14:
11
raise ImportError("Couldn't import python_minifier.") from exc
12
13
python_minifier = None
setup.cfg
@@ -33,7 +33,7 @@ keywords = python-encrypt, import-hook
33
install_requires =
34
Cython >= 0.29.30
35
pycryptodome >= 3.14.1
36
- python-minifier >= 2.6.0; python_version < '3.12'
+ python-minifier >= 2.6.0; python_version < '3.14'
37
click
38
setuptools >= 66.1.0; python_version >= '3.12'
39
setuptools <= 60.9.0; python_version < '3.12'
0 commit comments