-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update requirements and tests (#224)
- update requirements - update required python version to 3.10 - bump limbo version to 9.0.0 - remove tox - remove pypy support (unfortunately! it isn't working with the new urllib3 or something, I couldn't immediately figure it out) - remove dead dockerfile - update test fixtures
- Loading branch information
Showing
47 changed files
with
16,827 additions
and
14,861 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,3 +21,5 @@ slask.egg-info/ | |
__pycache__ | ||
.pytest_cache | ||
.tool-versions | ||
.venv | ||
.mise.toml |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,6 @@ flake8 | |
pytest | ||
pytest-cov | ||
vcrpy | ||
tox | ||
|
||
# banner plugin | ||
pyfiglet | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,29 @@ | ||
attrs==21.4.0 | ||
beautifulsoup4==4.10.0 | ||
certifi==2021.10.8 | ||
charset-normalizer==2.0.12 | ||
coverage==6.3.2 | ||
distlib==0.3.4 | ||
filelock==3.6.0 | ||
flake8==4.0.1 | ||
beautifulsoup4==4.12.3 | ||
certifi==2024.2.2 | ||
charset-normalizer==3.3.2 | ||
coverage==7.4.3 | ||
exceptiongroup==1.2.0 | ||
flake8==7.0.0 | ||
html5lib==1.1 | ||
idna==3.3 | ||
importlib-metadata==4.2.0 | ||
iniconfig==1.1.1 | ||
mccabe==0.6.1 | ||
multidict==6.0.2 | ||
packaging==21.3 | ||
platformdirs==2.5.1 | ||
pluggy==1.0.0 | ||
py==1.11.0 | ||
pycodestyle==2.8.0 | ||
pyfiglet==0.8.post1 | ||
pyflakes==2.4.0 | ||
pyparsing==3.0.7 | ||
pytest==7.0.1 | ||
pytest-cov==3.0.0 | ||
PyYAML==6.0 | ||
requests==2.27.1 | ||
idna==3.6 | ||
iniconfig==2.0.0 | ||
mccabe==0.7.0 | ||
multidict==6.0.5 | ||
packaging==23.2 | ||
pluggy==1.4.0 | ||
pycodestyle==2.11.1 | ||
pyfiglet==1.0.2 | ||
pyflakes==3.2.0 | ||
pytest==8.1.1 | ||
pytest-cov==4.1.0 | ||
PyYAML==6.0.1 | ||
requests==2.31.0 | ||
six==1.16.0 | ||
soupsieve==2.3.1 | ||
toml==0.10.2 | ||
soupsieve==2.5 | ||
tomli==2.0.1 | ||
tox==3.24.5 | ||
typing-extensions==4.1.1 | ||
urllib3==1.26.8 | ||
vcrpy==4.1.1 | ||
virtualenv==20.13.1 | ||
urllib3==2.2.1 | ||
vcrpy==6.0.1 | ||
webencodings==0.5.1 | ||
websocket-client==1.2.3 | ||
wrapt==1.13.3 | ||
yarl==1.7.2 | ||
zipp==3.7.0 | ||
websocket-client==1.7.0 | ||
wrapt==1.16.0 | ||
yarl==1.9.4 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.