We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e17a4f9 commit 43428c9Copy full SHA for 43428c9
1 file changed
.github/workflows/integration-testing.yml
@@ -34,6 +34,16 @@ jobs:
34
python -m venv venv
35
. venv/bin/activate
36
pip install pytest
37
+
38
+ # --- Start of fix ---
39
+ # The version "v1.1.8" in setup.py is not PEP 440 compliant and causes
40
+ # pip's resolver to ignore the local wheel. We remove the "v" before building.
41
+ echo "Original version:"
42
+ grep "version=" setup.py
43
+ sed -i 's/version="v/version="/' setup.py
44
+ echo "Fixed version:"
45
46
+ # --- End of fix ---
47
48
# We don't install the wheel directly. Instead, we'll tell pip to look
49
# in the 'dist' directory when it resolves dependencies.
0 commit comments