Skip to content

Commit

Permalink
Merge pull request #37 from kpetremann/master
Browse files Browse the repository at this point in the history
chore: bump and make ruff happy
  • Loading branch information
kpetremann authored Dec 17, 2024
2 parents 4f0eb45 + dbcdb21 commit ad8a0dd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion netprobify/protocol/tcpsyn.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def send_packets(self, res, logging_level, all_groups, verbose=0, force_raw_sock
packets[seq_acked][1] = pkt[1]

# results analysis
for pkt_id in packets:
for pkt_id, _ in packets.items():
sent_pkt = packets[pkt_id][0]

# for each responses
Expand Down
4 changes: 4 additions & 0 deletions requirements/netprobify.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ flask-httpauth==4.8.0
# via -r requirements/netprobify.in
idna==3.10
# via requests
importlib-metadata==8.5.0
# via flask
ipaddress==1.0.23
# via ipam-client
ipam-client==0.6.2
Expand Down Expand Up @@ -62,3 +64,5 @@ waitress==3.0.0
# via -r requirements/netprobify.in
werkzeug==3.0.4
# via flask
zipp==3.21.0
# via importlib-metadata
1 change: 1 addition & 0 deletions requirements/tests.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ pykwalify
pylama
pytest
requests-mock
ruff
setuptools
2 changes: 2 additions & 0 deletions requirements/tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ ruamel-yaml==0.18.6
# via pykwalify
ruamel-yaml-clib==0.2.8
# via ruamel-yaml
ruff==0.8.3
# via -r requirements/tests.in
setuptools==75.1.0
# via -r requirements/tests.in
six==1.16.0
Expand Down

0 comments on commit ad8a0dd

Please sign in to comment.