Skip to content

Commit b741391

Browse files
committed
Add support for py3.8, py3.9
1 parent 3a2d191 commit b741391

File tree

3 files changed

+28
-23
lines changed

3 files changed

+28
-23
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "gstools-core"
3-
version = "1.0.0"
4-
authors = ["Lennart Schüler <mostem@posteo.de>"]
3+
version = "1.1.0"
4+
authors = ["Lennart Schüler <lennart.schueler@ufz.de>"]
55
edition = "2021"
66
description = "The core functions of GSTools"
77
readme = "README.md"
@@ -29,7 +29,7 @@ lto = true
2929
codegen-units = 1
3030

3131
[dependencies]
32-
pyo3 = { version = "0.21", features = ["abi3-py310", "extension-module"] }
32+
pyo3 = { version = "0.21", features = ["abi3-py38", "extension-module"] }
3333
numpy = "0.21"
3434
ndarray = { version = "0.15", features = ["rayon", "approx-0_5"] }
3535
rayon = "1.10"

pyproject.toml

Lines changed: 24 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,26 +2,31 @@
22
name = "gstools-core"
33
dependencies = ["numpy>=1.20.0,<2"]
44
license = { file = "LICENSE" }
5-
requires-python = ">=3.10"
5+
requires-python = ">=3.8"
6+
dynamic = ["version"]
67
classifiers = [
7-
"Development Status :: 5 - Production/Stable",
8-
"Intended Audience :: Developers",
9-
"Intended Audience :: End Users/Desktop",
10-
"Intended Audience :: Science/Research",
11-
"Intended Audience :: Education",
12-
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
13-
"Natural Language :: English",
14-
"Programming Language :: Python",
15-
"Programming Language :: Python :: 3",
16-
"Programming Language :: Python :: 3 :: Only",
17-
"Programming Language :: Python :: 3.10",
18-
"Programming Language :: Python :: 3.11",
19-
"Topic :: Scientific/Engineering",
20-
"Topic :: Scientific/Engineering :: GIS",
21-
"Topic :: Scientific/Engineering :: Hydrology",
22-
"Topic :: Scientific/Engineering :: Mathematics",
23-
"Topic :: Scientific/Engineering :: Physics",
24-
"Topic :: Utilities",
8+
"Development Status :: 5 - Production/Stable",
9+
"Intended Audience :: Developers",
10+
"Intended Audience :: End Users/Desktop",
11+
"Intended Audience :: Science/Research",
12+
"Intended Audience :: Education",
13+
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
14+
"Natural Language :: English",
15+
"Programming Language :: Python",
16+
"Programming Language :: Python :: 3",
17+
"Programming Language :: Python :: 3 :: Only",
18+
"Programming Language :: Python :: 3.8",
19+
"Programming Language :: Python :: 3.9",
20+
"Programming Language :: Python :: 3.10",
21+
"Programming Language :: Python :: 3.11",
22+
"Programming Language :: Python :: 3.12",
23+
"Programming Language :: Python :: 3.13",
24+
"Topic :: Scientific/Engineering",
25+
"Topic :: Scientific/Engineering :: GIS",
26+
"Topic :: Scientific/Engineering :: Hydrology",
27+
"Topic :: Scientific/Engineering :: Mathematics",
28+
"Topic :: Scientific/Engineering :: Physics",
29+
"Topic :: Utilities",
2530
]
2631

2732
[project.urls]

0 commit comments

Comments
 (0)