Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build SDist and wheel
run: uv build

- uses: actions/upload-artifact@v7
- uses: actions/upload-artifact@v7.0.1
with:
name: artifact
path: dist/*
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- uses: actions/download-artifact@v7
- uses: actions/download-artifact@v8.0.1
with:
name: artifact
path: dist
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,19 @@ repos:
- id: end-of-file-fixer
- id: check-toml
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.7
rev: v0.15.14
hooks:
# Run the linter.
- id: ruff
# Run the formatter.
- id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.19.1
rev: v1.20.2
hooks:
- id: mypy
files: ^(src/cloudevents/|tests/)
exclude: ^(src/cloudevents/v1/|tests/test_v1_compat/)
types: [python]
args: ["--config-file=pyproject.toml"]
additional_dependencies:
- types-python-dateutil>=2.9.0.20260305
- types-python-dateutil>=2.9.0.20260518
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed

- Updated dev and build-time dependencies.

## [2.1.0]

### Added
Expand Down
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,19 +47,19 @@ build-backend = "hatchling.build"

[dependency-groups]
dev = [
"ruff>=0.15.7",
"pytest>=9.0.2",
"mypy>=1.19.1",
"ruff>=0.15.14",
"pytest>=9.0.3",
"mypy>=1.20.2",
"isort>=8.0.1",
"flake8>=7.3.0",
"pep8-naming>=0.15.1",
"flake8-print>=5.0.0",
"pre-commit>=4.5.1",
"pre-commit>=4.6.0",
"pytest-cov>=7.1.0",
"types-python-dateutil>=2.9.0.20260305",
"types-python-dateutil>=2.9.0.20260518",
"sanic>=25.12.0",
"sanic-testing>=24.6.0",
"pydantic>=2.12.5",
"pydantic>=2.13.4",
]

[tool.uv.pip]
Expand Down
Loading
Loading