Skip to content

Commit

Permalink
prepare Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
ringsaturn committed Sep 13, 2024
1 parent 5eec1fd commit 2f3ef1e
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 147 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
manylinux: auto
command: build
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
args: --release -o dist -i 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
working-directory: citiespy
sccache: true
- name: Upload wheels
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: messense/maturin-action@v1
with:
command: build
args: --release -o dist --target universal2-apple-darwin -i 3.8 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
args: --release -o dist --target universal2-apple-darwin -i 3.9 3.10 3.11 3.12 pypy3.9 pypy3.10
working-directory: citiespy
sccache: true
- name: Upload wheels
Expand All @@ -69,7 +69,7 @@ jobs:
- uses: messense/maturin-action@v1
with:
command: build
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12
args: --release -o dist -i 3.9 3.10 3.11 3.12
working-directory: citiespy
sccache: true
- name: Upload wheels
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v4
Expand Down
152 changes: 14 additions & 138 deletions citiespy/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions citiespy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "citiespy"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
license = "Unlicense"

Expand All @@ -11,5 +11,5 @@ name = "citiespy"
crate-type = ["cdylib"]

[dependencies]
pyo3 = { version = "0.21.0", features = ["extension-module"] }
pyo3 = {version = "0.22.2", features = ["extension-module", "abi3-py38"]}
cities-json = { path = "../" }
2 changes: 1 addition & 1 deletion citiespy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
description = "Cities."

Expand Down

0 comments on commit 2f3ef1e

Please sign in to comment.