Skip to content

Commit

Permalink
chore: Bump Python in various places + minor typing fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
antonagestam committed Oct 19, 2024
1 parent f7fe681 commit 312aa50
Show file tree
Hide file tree
Showing 13 changed files with 253 additions and 220 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,17 +44,17 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.13
cache: pip
cache-dependency-path: requirements.txt
check-latest: true
- name: mypy cache
uses: actions/cache@v4
with:
path: .mypy_cache
key: "${{ runner.os }}-mypy-3.12-${{ hashFiles('requirements.txt') }}"
key: "${{ runner.os }}-mypy-3.13-${{ hashFiles('requirements.txt') }}"
restore-keys: |
${{ runner.os }}-mypy-3.12
${{ runner.os }}-mypy-3.13
${{ runner.os }}-mypy
- run: pip install -e .
- run: pip install -r requirements.txt
Expand All @@ -69,7 +69,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13-dev"]
python-version: ["3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"
cache: pip
cache-dependency-path: generate-requirements.txt
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: 3.12
python-version: 3.13
cache: pip
cache-dependency-path: pyproject.toml
check-latest: true
Expand Down
2 changes: 1 addition & 1 deletion .goose/check-manifest/manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"source_ecosystem":{"language":"python","version":"3.12"},"source_dependencies":["check-manifest","setuptools-scm==8.1.0","setuptools==71.1.0","wheel==0.43.0"],"lock_files":[{"path":"requirements.txt","checksum":"sha256:5271a06ecd5cbb20624f4b82bd116d43e155c2d78f21a497bd855de4c9cdb96a"}],"checksum":"sha256:0bea0f7a721d41b849e71f776333fece47902c230fbb42a3937493de2b0c21cb"}
{"source_ecosystem":{"language":"python","version":"3.13"},"source_dependencies":["check-manifest","setuptools-scm==8.1.0","setuptools==71.1.0","wheel==0.43.0"],"lock_files":[{"path":"requirements.txt","checksum":"sha256:5271a06ecd5cbb20624f4b82bd116d43e155c2d78f21a497bd855de4c9cdb96a"}],"checksum":"sha256:0bea0f7a721d41b849e71f776333fece47902c230fbb42a3937493de2b0c21cb"}
2 changes: 1 addition & 1 deletion .goose/node/manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"source_ecosystem":{"language":"node","version":"21.7.1"},"source_dependencies":["prettier"],"lock_files":[{"path":"package-lock.json","checksum":"sha256:f4412caf2beed530362395e3e44258f75cc35e43e890f1e2f725f9bbda990f4c"},{"path":"package.json","checksum":"sha256:c5008cb00d6009f6d901cfe35523169a3deb91979b71fce65d6ac79fdace548b"}],"checksum":"sha256:a112173ffe8caaeb52381f7fef342a108d8d4b4e081310059c09786525de466c"}
{"source_ecosystem":{"language":"node","version":"23.0.0"},"source_dependencies":["prettier"],"lock_files":[{"path":"package-lock.json","checksum":"sha256:f4412caf2beed530362395e3e44258f75cc35e43e890f1e2f725f9bbda990f4c"},{"path":"package.json","checksum":"sha256:c5008cb00d6009f6d901cfe35523169a3deb91979b71fce65d6ac79fdace548b"}],"checksum":"sha256:a112173ffe8caaeb52381f7fef342a108d8d4b4e081310059c09786525de466c"}
2 changes: 1 addition & 1 deletion .goose/python/manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"source_ecosystem":{"language":"python","version":"3.12"},"source_dependencies":["blacken-docs","check-jsonschema","editorconfig-checker","pre-commit-hooks","ruff"],"lock_files":[{"path":"requirements.txt","checksum":"sha256:d804343c7296e4039250bf84fa4e9a120eef765bb2aeb4e218b8c46948e5b029"}],"checksum":"sha256:8ca4adac530afb9fbc753868728949ebbea36f810e8fdd6e45081a44d118a729"}
{"source_ecosystem":{"language":"python","version":"3.13"},"source_dependencies":["blacken-docs","check-jsonschema","editorconfig-checker","pre-commit-hooks","ruff"],"lock_files":[{"path":"requirements.txt","checksum":"sha256:d804343c7296e4039250bf84fa4e9a120eef765bb2aeb4e218b8c46948e5b029"}],"checksum":"sha256:8ca4adac530afb9fbc753868728949ebbea36f810e8fdd6e45081a44d118a729"}
6 changes: 3 additions & 3 deletions goose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ environments:
- id: python
ecosystem:
language: python
version: "3.12"
version: "3.13"
dependencies:
- ruff
- pre-commit-hooks
Expand All @@ -13,7 +13,7 @@ environments:
- id: check-manifest
ecosystem:
language: python
version: "3.12"
version: "3.13"
dependencies:
- check-manifest
- setuptools==71.1.0
Expand All @@ -23,7 +23,7 @@ environments:
- id: node
ecosystem:
language: node
version: "21.7.1"
version: "23.0.0"
dependencies:
- prettier

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Typing :: Typed",
]
Expand Down
Loading

0 comments on commit 312aa50

Please sign in to comment.