Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ringsaturn committed Jan 3, 2024
1 parent 0e7a914 commit cf951a1
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 10 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 --find-interpreter
args: --release -o dist -i 3.8 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 --find-interpreter
args: --release -o dist --target universal2-apple-darwin -i 3.8 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 --find-interpreter
args: --release -o dist -i 3.8 3.9 3.10 3.11 3.12
working-directory: citiespy
sccache: true
- name: Upload wheels
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cities-json"
version = "0.5.3"
version = "0.5.4"
edition = "2021"
license = "Unlicense"
description = "Get cities"
Expand Down
8 changes: 4 additions & 4 deletions citiespy/Cargo.lock

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

2 changes: 1 addition & 1 deletion citiespy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "citiespy"
version = "0.5.3"
version = "0.5.4"
edition = "2021"
license = "Unlicense"

Expand Down
5 changes: 5 additions & 0 deletions citiespy/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +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",
]
description = "Cities."

Expand Down

0 comments on commit cf951a1

Please sign in to comment.