Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: bump and make ruff happy #37

Merged
merged 2 commits into from
Dec 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading