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

Python Requirements Update #177

Merged
merged 2 commits into from
Jan 31, 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 requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lxml==5.1.0
# via -r requirements/base.in
requests==2.31.0
# via -r requirements/base.in
urllib3==2.1.0
urllib3==2.2.0
# via requests
youtube-dl==2021.12.17
# via -r requirements/base.in
10 changes: 5 additions & 5 deletions requirements/ci.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
black==23.12.1
black==24.1.1
# via -r requirements/quality.txt
cachetools==5.3.2
# via tox
Expand All @@ -24,7 +24,7 @@ click==8.1.7
# black
colorama==0.4.6
# via tox
coverage[toml]==7.4.0
coverage[toml]==7.4.1
# via
# -r requirements/ci.in
# -r requirements/quality.txt
Expand Down Expand Up @@ -77,7 +77,7 @@ platformdirs==4.1.0
# black
# tox
# virtualenv
pluggy==1.3.0
pluggy==1.4.0
# via
# -r requirements/quality.txt
# pytest
Expand All @@ -92,7 +92,7 @@ pyflakes==3.2.0
# flake8
pyproject-api==1.6.1
# via tox
pytest==7.4.4
pytest==8.0.0
# via
# -r requirements/quality.txt
# pytest-cov
Expand All @@ -117,7 +117,7 @@ typing-extensions==4.9.0
# via
# -r requirements/quality.txt
# black
urllib3==2.1.0
urllib3==2.2.0
# via
# -r requirements/quality.txt
# requests
Expand Down
12 changes: 6 additions & 6 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
black==23.12.1
black==24.1.1
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
Expand Down Expand Up @@ -45,13 +45,13 @@ colorama==0.4.6
# via
# -r requirements/ci.txt
# tox
coverage[toml]==7.4.0
coverage[toml]==7.4.1
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
# coverage
# pytest-cov
cryptography==42.0.0
cryptography==42.0.1
# via secretstorage
distlib==0.3.8
# via
Expand Down Expand Up @@ -147,7 +147,7 @@ platformdirs==4.1.0
# black
# tox
# virtualenv
pluggy==1.3.0
pluggy==1.4.0
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
Expand Down Expand Up @@ -177,7 +177,7 @@ pyproject-hooks==1.0.0
# via
# -r requirements/pip-tools.txt
# build
pytest==7.4.4
pytest==8.0.0
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
Expand Down Expand Up @@ -230,7 +230,7 @@ typing-extensions==4.9.0
# -r requirements/quality.txt
# black
# rich
urllib3==2.1.0
urllib3==2.2.0
# via
# -r requirements/ci.txt
# -r requirements/quality.txt
Expand Down
10 changes: 5 additions & 5 deletions requirements/quality.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# make upgrade
#
black==23.12.1
black==24.1.1
# via -r requirements/quality.in
certifi==2023.11.17
# via
Expand All @@ -16,7 +16,7 @@ charset-normalizer==3.3.2
# requests
click==8.1.7
# via black
coverage[toml]==7.4.0
coverage[toml]==7.4.1
# via
# -r requirements/test.txt
# coverage
Expand Down Expand Up @@ -50,15 +50,15 @@ pathspec==0.12.1
# via black
platformdirs==4.1.0
# via black
pluggy==1.3.0
pluggy==1.4.0
# via
# -r requirements/test.txt
# pytest
pycodestyle==2.11.1
# via flake8
pyflakes==3.2.0
# via flake8
pytest==7.4.4
pytest==8.0.0
# via
# -r requirements/test.txt
# pytest-cov
Expand All @@ -77,7 +77,7 @@ tomli==2.0.1
# pytest
typing-extensions==4.9.0
# via black
urllib3==2.1.0
urllib3==2.2.0
# via
# -r requirements/test.txt
# requests
Expand Down
8 changes: 4 additions & 4 deletions requirements/test.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ charset-normalizer==3.3.2
# via
# -r requirements/base.txt
# requests
coverage[toml]==7.4.0
coverage[toml]==7.4.1
# via
# -r requirements/test.in
# pytest-cov
Expand All @@ -28,9 +28,9 @@ lxml==5.1.0
# via -r requirements/base.txt
packaging==23.2
# via pytest
pluggy==1.3.0
pluggy==1.4.0
# via pytest
pytest==7.4.4
pytest==8.0.0
# via
# -r requirements/test.in
# pytest-cov
Expand All @@ -45,7 +45,7 @@ tomli==2.0.1
# via
# coverage
# pytest
urllib3==2.1.0
urllib3==2.2.0
# via
# -r requirements/base.txt
# requests
Expand Down
1 change: 1 addition & 0 deletions src/cc2olx/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
""" Utility functions for cc2olx"""

import logging
import string
import csv
Expand Down
Loading