Skip to content

Commit

Permalink
Python 3.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
urschrei committed Oct 10, 2024
1 parent 1dbea18 commit dec4ac7
Show file tree
Hide file tree
Showing 4 changed files with 154 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,23 +35,23 @@ jobs:
matrix:
include:
- os: ubuntu-latest
pybuilds: cp3{8,9,10,11,12}-manylinux_x86_64
pybuilds: cp3{9,10,11,12,13}-manylinux_x86_64
arch: x86_64
id: linux
- os: ubuntu-latest
pybuilds: cp3{8,9,10,11,12}-manylinux_aarch64
pybuilds: cp3{9,10,11,12,13}-manylinux_aarch64
arch: aarch64
id: linux_arm64
- os: macos-latest
pybuilds: cp3{8,9,10,11,12}-macosx_x86_64
pybuilds: cp3{9,10,11,12,13}-macosx_x86_64
arch: x86_64
id: macos_x86
- os: macos-latest
pybuilds: cp3{9,10,11,12}-macosx_arm64
pybuilds: cp3{9,10,11,12,13}-macosx_arm64
arch: arm64
id: macos_arm64
- os: windows-latest
pybuilds: cp3{8,9,10,11,12}-win_amd64
pybuilds: cp3{9,10,11,12,13}-win_amd64
arch: x86_64
id: windows

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
`pip install pypolyline`

### Supported Python Versions
- Python 3.8
- Python 3.9
- Python 3.10
- Python 3.11
- Python 3.12
- Python 3.13

### Supported Platforms
- Linux (`manylinux*`-compatible, x86_64 and aarch64)
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,20 @@
name = "pypolyline"
dynamic = ["version", "readme"]
description = "Fast Google Polyline encoding and decoding using Rust FFI"
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
"numpy >= 1.11.0",
"numpy >= 2.0.0",
]
authors = [{ name = "Stephan Hügel", email = "urschrei@gmail.com" }]
license = {file = "LICENSE.md"}
keywords = ["Geo", "Polyline"]
classifiers = [
"Programming Language :: Python",
"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",
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
Expand All @@ -40,7 +40,7 @@ build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 45",
"setuptools-scm[toml] >= 6.2",
"numpy >= 1.11.0",
"numpy >= 2.0.0",
"cython >= 0.29.0",
"wheel >= 0.29.0",
]
Expand Down
144 changes: 144 additions & 0 deletions uv.lock

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

0 comments on commit dec4ac7

Please sign in to comment.