Skip to content

Commit

Permalink
Merge pull request #4410 from gizmoguy/skip-override-deps-pypi
Browse files Browse the repository at this point in the history
Prevent override deps from becoming part of python package.
  • Loading branch information
gizmoguy committed Oct 26, 2023
2 parents 3fe4253 + 6abd28a commit 1ad16be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
eventlet @ https://github.com/faucetsdn/eventlet/archive/main.tar.gz#egg=eventlet
ncclient @ https://github.com/faucetsdn/python3-fakencclient/archive/main.tar.gz#egg=ncclient
https://github.com/faucetsdn/eventlet/archive/main.tar.gz#egg=eventlet
https://github.com/faucetsdn/python3-fakencclient/archive/main.tar.gz#egg=ncclient
chewie==0.0.25
influxdb>=2.12.0
networkx>=1.9
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/packaging/test_packaging.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def _parse_pip_requirements(self, requirements_file):
self.faucet_pip_reqs = {}
with open(requirements_file, "r", encoding="utf-8") as handle:
for pip_req in requirements.parse(handle):
if pip_req.name is None or pip_req.local_file:
if pip_req.name is None or pip_req.local_file or pip_req.uri:
continue
self.faucet_pip_reqs[pip_req.name] = pip_req.specs

Expand Down

0 comments on commit 1ad16be

Please sign in to comment.