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

Bump dev dependencies #459

Merged
merged 1 commit into from
Dec 8, 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 .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
version: "0.4.27"
version: "0.5.7"
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: astral-sh/setup-uv@v4
with:
enable-cache: true
version: "0.4.27"
version: "0.5.7"
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ repos:
- id: requirements-txt-fixer
- id: trailing-whitespace
- repo: https://github.com/charliermarsh/ruff-pre-commit
rev: v0.7.1
rev: v0.8.2
hooks:
- id: ruff-format
- id: ruff
Expand All @@ -48,6 +48,6 @@ repos:
- id: mypy
additional_dependencies: [orjson]
- repo: https://github.com/commitizen-tools/commitizen
rev: v3.30.0
rev: v4.1.0
hooks:
- id: commitizen
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "peprock"
version = "1.7.3"
description = "Foundational Python library"
readme = "README.md"
requires-python = ">=3.10,<4"
requires-python = ">=3.10,<3.14"
license = "MIT"
authors = [
{ "name" = "Jakob Keller", "email" = "57402305+jakob-keller@users.noreply.github.com" },
Expand All @@ -37,18 +37,18 @@ classifiers = [
"Typing :: Typed",
]
dependencies = [
"typing-extensions >=4.0.1,<5; python_version < '3.11'",
"typing-extensions >=4.0.1,<5.0.0; python_version < '3.11'",
]

[dependency-groups]
dev = [
"coverage[toml] >=7.2.1,<8",
"mypy[faster-cache] >=1.1.1,<2",
"pre-commit >=4.0.1,<5",
"pdoc3 >=0.11.1,<0.12",
"pytest >=8.0.0,<9",
"pytest-cov >=5.0.0,<6",
"ruff >=0.7.0,<0.8",
"coverage[toml] >=7.2.1,<8.0.0",
"mypy[faster-cache] >=1.1.1,<2.0.0",
"pre-commit >=4.0.1,<5.0.0",
"pdoc3 >=0.11.1,<0.12.0",
"pytest >=8.0.0,<9.0.0",
"pytest-cov >=6.0.0,<7.0.0",
"ruff >=0.8.2,<0.9.0",
]

[project.urls]
Expand Down
Loading
Loading