Skip to content

Commit

Permalink
Tests: Update requirements.txt (smicallef#1658)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoles committed May 1, 2022
1 parent a5ded16 commit c3e1cdb
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion sflib.py
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ def validIpNetwork(self, cidr: str) -> bool:
return False

try:
return bool(netaddr.IPNetwork(str(cidr)).size > 0)
return netaddr.IPNetwork(str(cidr)).size > 0
except BaseException:
return False

Expand Down
28 changes: 14 additions & 14 deletions test/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
-r ../requirements.txt
darglint==1.8.0
dlint==0.11.0
flake8==3.9.2
flake8-annotations==2.6.2
flake8-blind-except==0.2.0
flake8-bugbear==21.9.2
darglint==1.8.1
dlint==0.12.0
flake8==4.0.1
flake8-annotations==2.9.0
flake8-blind-except==0.2.1
flake8-bugbear==22.4.25
flake8-builtins==1.5.3
flake8-quotes==3.3.0
flake8-quotes==3.3.1
flake8-return==1.1.3
flake8-sfs==0.0.3
flake8-simplify==0.14.2
pytest==6.2.5
flake8-simplify==0.19.2
pytest==7.1.2
pytest-cov==3.0.0
pytest-flake8==1.0.7
pytest-mock==3.6.1
pytest-xdist==2.4.0
pycodestyle==2.7.0
responses==0.14.0
pytest-flake8==1.1.1
pytest-mock==3.7.0
pytest-xdist==2.5.0
pycodestyle==2.8.0
responses==0.20.0

0 comments on commit c3e1cdb

Please sign in to comment.