Skip to content

Commit 8704579

Browse files
committed
Update to Python 3.14
1 parent 2fac025 commit 8704579

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/wheels.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ jobs:
109109
CIBW_BUILD: ${{ matrix.pybuilds }}
110110
CIBW_ARCHS_MACOS: ${{ matrix.arch }}
111111
CIBW_ARCHS_LINUX: ${{ matrix.arch }}
112+
CIBW_ENVIRONMENT_MACOS: MACOSX_DEPLOYMENT_TARGET=10.12
112113

113114
- id: attest
114115
name: Attest Build Provenance

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ A utility library for converting decimal [WGS84](http://spatialreference.org/ref
66
Conversion is handled by a [Rust binary](https://github.com/urschrei/rust_bng) using FFI, and is quite fast. Some benchmarks can be found [here](https://github.com/urschrei/lonlat_bng#benchmark).
77

88
# Installation
9-
`pip install convertbng`
10-
Please use an up-to-date version of pip (`8.1.2` as of June 2016)
9+
- `pip install convertbng`
10+
- `uv add convertbng`
1111

1212
### Supported Python Versions
1313
Simplification supports all [_currently_ supported Python versions](https://devguide.python.org/versions/).

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ dynamic = ["version", "readme"]
44
description = "Fast lon, lat to and from ETRS89 and BNG (OSGB36) using the OS OSTN15 transform via Rust FFI"
55
license = "BlueOak-1.0.0"
66
license-files = ["LICENSE.md"]
7-
requires-python = ">=3.9"
7+
requires-python = ">=3.10"
88
dependencies = [
99
"numpy >= 2.0.0",
1010
]
1111
authors = [{ name = "Stephan Hügel", email = "urschrei@gmail.com" }]
1212
keywords = ["Geo", "OSTN02", "OSTN15", "BNG", "OSGB36", "GIS"]
1313
classifiers = [
1414
"Programming Language :: Python",
15-
"Programming Language :: Python :: 3.9",
1615
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
1918
"Programming Language :: Python :: 3.13",
19+
"Programming Language :: Python :: 3.14",
2020
"Development Status :: 5 - Production/Stable",
2121
"Intended Audience :: Developers",
2222
"Intended Audience :: Science/Research",

0 commit comments

Comments
 (0)