Skip to content

Commit

Permalink
Merge pull request #4387 from gizmoguy/eventlet-py3.12
Browse files Browse the repository at this point in the history
Add Eventlet with Python 3.12 support
  • Loading branch information
anarkiwi committed Oct 6, 2023
2 parents 8c37218 + 318e233 commit f407e5c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.8, 3.9, '3.10', 3.11]
python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
steps:
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +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
chewie==0.0.25
influxdb>=2.12.0
networkx>=1.9
Expand All @@ -7,4 +9,3 @@ ruamel.yaml==0.17.32
os_ken==2.6.0
beka==0.4.2
pytricia>=1.0.0
https://github.com/faucetsdn/python3-fakencclient/archive/main.tar.gz
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:
if pip_req.name is None or pip_req.local_file:
continue
self.faucet_pip_reqs[pip_req.name] = pip_req.specs

Expand Down

0 comments on commit f407e5c

Please sign in to comment.