Closed
Description
Issue description
I'm running pipenv version 2020.11.15 in a Gitlab CI pipeline.
I use pipenv lock
and then git diff Pipfile.lock
to see if the Pipfile.lock was updated, meaning that the version on the repository is not up-to-date anymore.
Occasionally, pipenv updates the lock file just changing the Python 4 specifier as follows:
diff --git a/Pipfile.lock b/Pipfile.lock
index c8d17c6..0228d56 100644
--- a/Pipfile.lock
+++ b/Pipfile.lock
@@ -225,7 +225,7 @@
"sha256:0a943902919f65c5684ac4e0154b1ad4fac6dcaa5d9f3426b732f1c8b5419be6",
"sha256:2bb1680aad211e3c9944dbce1d4ba09a989f04e238296c87fe2139faa26d655d"
],
- "markers": "python_version >= '3.6' and python_version < '4.0'",
+ "markers": "python_version >= '3.6' and python_version < '4'",
"version": "==5.8.0"
},
"jedi": {
@@ -881,7 +881,7 @@
"sha256:2f4da4594db7e1e110a944bb1b551fdf4e6c136ad42e4234131391e21eb5b0df",
"sha256:e7b021f7241115872f92f43c6508082facffbd1c048e3c6e2bb9c2a157e28937"
],
- "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4.0'",
+ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4' and python_version < '4'",
"version": "==1.26.4"
},
"wcwidth": {
And sometimes it does the opposite thing, changing from python_version < '4'
to python_version < '4.0'
.
This of course breaks the pipeline, because there is difference in the Pipfile.lock, even though that difference is not significant.
Expected result
pipenv lock should change the lock file in a deterministic way, either always with python_version < '4'
or python_version < '4.0'
.