Skip to content

Commit

Permalink
chore(deps): upgrade project dependencies (#40)
Browse files Browse the repository at this point in the history
Upgrade all project dependencies except [coverage](https://github.com/nedbat/coveragepy).
  • Loading branch information
kennedykori committed Apr 11, 2024
1 parent 1107e2c commit 47c0bf8
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
Expand All @@ -12,14 +12,14 @@ repos:
- id: check-yaml

- repo: https://github.com/asottile/pyupgrade
rev: v3.15.1
rev: v3.15.2
hooks:
- id: pyupgrade
args:
- --py311-plus

- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.3.3
rev: v0.3.6
hooks:
- id: ruff
args:
Expand Down
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ classifiers = [
"Typing :: Typed"
]
dependencies = [
"importlib-metadata>=7.0.2",
"typing-extensions>=4.10.0",
"importlib-metadata>=7.1.0",
"typing-extensions>=4.11.0",
]
description = "A collection of utilities used throughout SGHI's Python projects."
dynamic = ["version"]
Expand All @@ -40,12 +40,12 @@ requires-python = ">=3.11" # Support Python 3.11+.

[project.optional-dependencies]
dev = [
"pre-commit~=3.6.2",
"pre-commit~=3.7.0",
]

docs = [
"furo==2024.1.29",
"jaraco.packaging~=9.4.0",
"jaraco.packaging~=9.5.0",
"rst.linker~=2.4.0",
"Sphinx~=7.2.6",
"sphinx-favicon~=1.0.1",
Expand All @@ -60,14 +60,14 @@ test = [
"coveralls~=3.3.1",
"factory-boy~=3.3.0",
"packaging",
"pyright>=1.1.354",
"pyright>=1.1.358",
"pytest~=8.1.1",
"pytest-cov~=4.1.0",
"pytest-cov~=5.0.0",
"pytest-forked~=1.6.0",
"pytest-sugar~=1.0.0",
"pytest-xdist~=3.5.0",
"ruff~=0.3.3",
"tox~=4.14.1",
"ruff~=0.3.6",
"tox~=4.14.2",
"tox-gh-actions~=3.2.0",
]

Expand Down

0 comments on commit 47c0bf8

Please sign in to comment.