Skip to content

Commit fe85d45

Browse files
committed
Loosen the python compatibility ranges
1 parent 8493e9a commit fe85d45

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

repo2docker/buildpacks/poetry/__init__.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,11 @@
1111

1212
from ..conda import CondaBuildPack
1313

14-
# Minimum version of python for use with Poetry
14+
# Minimum compatible version of python2 for use with Poetry
1515
COMPATIBLE_PYTHON2_VERSIONS = parse_constraint(">=2.7")
1616

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")
17+
# Minimum compatible version of python3 for use with Poetry
18+
COMPATIBLE_PYTHON3_VERSIONS = parse_constraint(">=3.5")
2019

2120

2221
class PoetryBuildPack(CondaBuildPack):

0 commit comments

Comments
 (0)