Skip to content

Commit 18089e0

Browse files
committed
get the zip link to work
1 parent c391ea0 commit 18089e0

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
pytest>=6.2.4
2-
https://github.com/andni233/pytest-parallel/archive/448a404d236ed0bbf3967e85ecce025115b1876c.zip#egg=pytest-parallel
2+
pytest-parallel @ https://github.com/andni233/pytest-parallel/archive/448a404d236ed0bbf3967e85ecce025115b1876c.zip#egg=pytest-parallel
33
selenium>=3.141.0

setup.py

+6
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
try:
1212
with open("requirements.txt", "r") as reqs:
1313
requirements = reqs.read().split("\n")
14+
links = [
15+
req.split("@")[-1].strip()
16+
for req in requirements
17+
if "@" in req
18+
]
1419
except:
1520
requirements = ""
1621

@@ -40,4 +45,5 @@
4045
],
4146
python_requires=">=3.5",
4247
install_requires=requirements,
48+
dependency_links=links
4349
)

0 commit comments

Comments
 (0)