Skip to content

Commit

Permalink
Bump dependencies
Browse files Browse the repository at this point in the history
Also resolves a few ruff-related deprecations
  • Loading branch information
jeohist committed Feb 22, 2024
1 parent 0fde4a8 commit dbcc908
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 19 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ TEST_FILES ?= tests/integration/test_*.py
VERSION ?= $(shell git tag --list --sort=-version:refname "v*" | head -n 1)
COMMIT ?= $(shell git rev-parse --short HEAD)

PIP_TOOLS_VERSION ?= 7.3.0
PIP_VERSION ?= 23.3.1
PIP_TOOLS_VERSION ?= 7.4.0
PIP_VERSION ?= 24.0
PYTHON_PLATFORM ?= manylinux2014_x86_64
PYTHON_VERSION ?= 310

Expand Down Expand Up @@ -104,5 +104,5 @@ format:

.PHONY: lint
lint:
ruff check buildpack lib/m2ee/* tests/*/ --show-source
ruff check buildpack lib/m2ee/* tests/*/ --output-format=full
pylint --disable=W,R,C buildpack lib/m2ee/* tests/*/
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ exclude = [
"tests/unit/test_databroker.py"
]

[tool.ruff.mccabe]
[tool.ruff.lint.mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10

Expand Down
10 changes: 5 additions & 5 deletions requirements-dev.in
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
click==8.1.7
idna==3.6
pytest==7.4.3
pytest-timer==0.0.11
pytest==8.0.1
pytest-timer==1.0.0
pytest-timeout==2.2.0
pylint==3.0.2
pyopenssl==23.3.0
pylint==3.0.3
pyopenssl==24.0.0
randomname==0.2.1
requests-mock==1.11.0
ruff==0.1.6
ruff==0.2.2
parameterized==0.9.0
10 changes: 5 additions & 5 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
backoff==2.2.1
certifi==2023.11.17
cryptography==41.0.7
distro==1.8.0
certifi==2024.2.2
cryptography==42.0.4
distro==1.9.0
httplib2==0.22.0
jinja2==3.1.2
jinja2==3.1.3
omegaconf==2.3.0
psycopg2-binary==2.9.9
pyyaml==6.0.1
requests==2.31.0
urllib3==2.1.0
urllib3==2.2.1
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,23 @@ antlr4-python3-runtime==4.9.3
# via omegaconf
backoff==2.2.1
# via -r requirements.in
certifi==2023.11.17
certifi==2024.2.2
# via
# -r requirements.in
# requests
cffi==1.14.4
# via cryptography
charset-normalizer==2.0.3
# via requests
cryptography==41.0.7
cryptography==42.0.4
# via -r requirements.in
distro==1.8.0
distro==1.9.0
# via -r requirements.in
httplib2==0.22.0
# via -r requirements.in
idna==2.8
# via requests
jinja2==3.1.2
jinja2==3.1.3
# via -r requirements.in
markupsafe==2.0.1
# via jinja2
Expand All @@ -42,7 +42,7 @@ pyyaml==6.0.1
# omegaconf
requests==2.31.0
# via -r requirements.in
urllib3==2.1.0
urllib3==2.2.1
# via
# -r requirements.in
# requests

0 comments on commit dbcc908

Please sign in to comment.