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 1d1e393 commit 83b5f11Copy full SHA for 83b5f11
repo2docker/buildpacks/pyproject/__init__.py
@@ -34,7 +34,7 @@ def python_version(self):
34
if "project" in pyproject_toml:
35
if "requires-python" in pyproject_toml["project"]:
36
raw_version = pyproject_toml["project"]["requires-python"]
37
-
+
38
match = VERSION_PAT.match(raw_version)
39
if match:
40
return match.group()
@@ -121,4 +121,4 @@ def detect(self):
121
122
pyproject_file = self.binder_path("pyproject.toml")
123
124
- return os.path.exists(pyproject_file)
+ return os.path.exists(pyproject_file)
0 commit comments