Skip to content

Commit

Permalink
Upgrade dependencies
Browse files Browse the repository at this point in the history
* Upgrade Python requirements
* Upgrade pre-commit dependencies
  • Loading branch information
replaceafill authored Jun 19, 2024
1 parent fd80ed0 commit 764e09a
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 20 deletions.
10 changes: 5 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
repos:
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.2
rev: v3.16.0
hooks:
- id: pyupgrade
args: [--py38-plus]
- repo: https://github.com/asottile/reorder_python_imports
rev: v3.12.0
rev: v3.13.0
hooks:
- id: reorder-python-imports
args: [--py38-plus]
Expand All @@ -15,14 +15,14 @@ repos:
- id: black
args: [--safe, --quiet]
- repo: https://github.com/pycqa/flake8
rev: "7.0.0"
rev: "7.1.0"
hooks:
- id: flake8
additional_dependencies:
- flake8-bugbear==24.2.6
- flake8-bugbear==24.4.26
- flake8-comprehensions==3.14.0
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.39.0
rev: v0.41.0
hooks:
- id: markdownlint
exclude: |
Expand Down
20 changes: 10 additions & 10 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
#
build==1.2.1
# via pip-tools
certifi==2024.2.2
certifi==2024.6.2
# via requests
charset-normalizer==3.3.2
# via requests
click==8.1.7
# via pip-tools
coverage[toml]==7.5.1
coverage[toml]==7.5.3
# via
# fixity (pyproject.toml)
# pytest-cov
Expand All @@ -26,7 +26,7 @@ importlib-metadata==7.1.0
# via build
iniconfig==2.0.0
# via pytest
packaging==24.0
packaging==24.1
# via
# build
# pytest
Expand All @@ -38,33 +38,33 @@ pyproject-hooks==1.1.0
# via
# build
# pip-tools
pytest==8.2.1
pytest==8.2.2
# via
# fixity (pyproject.toml)
# pytest-cov
pytest-cov==5.0.0
# via fixity (pyproject.toml)
requests==2.32.1
requests==2.32.3
# via fixity (pyproject.toml)
sqlalchemy==2.0.30
sqlalchemy==2.0.31
# via fixity (pyproject.toml)
tomli==2.0.1
# via
# build
# coverage
# pip-tools
# pytest
typing-extensions==4.11.0
typing-extensions==4.12.2
# via sqlalchemy
urllib3==2.2.1
urllib3==2.2.2
# via requests
wheel==0.43.0
# via pip-tools
zipp==3.18.2
zipp==3.19.2
# via importlib-metadata

# The following packages are considered to be unsafe in a requirements file:
pip==24.0
# via pip-tools
setuptools==70.0.0
setuptools==70.1.0
# via pip-tools
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@
#
# pip-compile --allow-unsafe --output-file=requirements.txt pyproject.toml
#
certifi==2024.2.2
certifi==2024.6.2
# via requests
charset-normalizer==3.3.2
# via requests
greenlet==3.0.3
# via sqlalchemy
idna==3.7
# via requests
requests==2.32.1
requests==2.32.3
# via fixity (pyproject.toml)
sqlalchemy==2.0.30
sqlalchemy==2.0.31
# via fixity (pyproject.toml)
typing-extensions==4.11.0
typing-extensions==4.12.2
# via sqlalchemy
urllib3==2.2.1
urllib3==2.2.2
# via requests

0 comments on commit 764e09a

Please sign in to comment.