Skip to content

Commit

Permalink
Add Python 3.13 to test matrix (#295)
Browse files Browse the repository at this point in the history
* Add Python 3.13 to the test matrix

Now that it's released, we should test it.

* Run pre-commit autoupdate

* Run `uv lock -U` to obtain latest pyarrow with 3.13 wheels
  • Loading branch information
nicholasjng authored Oct 29, 2024
1 parent 9e47e70 commit 06134be
Show file tree
Hide file tree
Showing 3 changed files with 447 additions and 390 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
deps:
# Oldest supported versions
- lakefs: "lakefs==0.2.0"
Expand Down
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@ repos:
- id: end-of-file-fixer
- id: mixed-line-ending
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.11.2
rev: v1.13.0
hooks:
# See https://github.com/pre-commit/mirrors-mypy/blob/main/.pre-commit-hooks.yaml
- id: mypy
types_or: [python, pyi]
args: [--ignore-missing-imports, --scripts-are-modules]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.7.1
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
Expand All @@ -37,7 +37,7 @@ repos:
# - id: pydoclint
# args: [--check-class-attributes=False]
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.4.18
rev: 0.4.27
hooks:
- id: uv-lock
name: Lock project dependencies
Loading

0 comments on commit 06134be

Please sign in to comment.