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 8493e9a commit fe85d45Copy full SHA for fe85d45
repo2docker/buildpacks/poetry/__init__.py
@@ -11,12 +11,11 @@
11
12
from ..conda import CondaBuildPack
13
14
-# Minimum version of python for use with Poetry
+# Minimum compatible version of python2 for use with Poetry
15
COMPATIBLE_PYTHON2_VERSIONS = parse_constraint(">=2.7")
16
17
-# Min and max compatible versions of python3. N.B. the maximum constraint will
18
-# have to be manually bumped
19
-COMPATIBLE_PYTHON3_VERSIONS = parse_constraint(">=3.5, <3.10")
+# Minimum compatible version of python3 for use with Poetry
+COMPATIBLE_PYTHON3_VERSIONS = parse_constraint(">=3.5")
20
21
22
class PoetryBuildPack(CondaBuildPack):
0 commit comments