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 8d98703 commit ddd6d2fCopy full SHA for ddd6d2f
repo2docker/buildpacks/pyproject/__init__.py
@@ -6,9 +6,13 @@
6
7
import os
8
import re
9
-import tomllib
10
from functools import lru_cache
11
+try:
12
+ import tomllib
13
+except ImportError:
14
+ import tomli as tomllib
15
+
16
from ..conda import CondaBuildPack
17
18
VERSION_PAT = re.compile(r"\d+(\.\d+)*")
setup.py
@@ -62,7 +62,7 @@ def get_identifier(json):
62
"toml",
63
"traitlets",
64
],
65
- python_requires=">=3.11",
+ python_requires=">=3.9",
66
author="Project Jupyter Contributors",
67
author_email="[email protected]",
68
url="https://repo2docker.readthedocs.io/en/latest/",
0 commit comments