Skip to content

Commit c38d6c3

Browse files
committed
hmmm, remove all the scipy stuff and try this
1 parent 7bdb60e commit c38d6c3

3 files changed

Lines changed: 4 additions & 14 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,8 @@ requires = [
33
"setuptools >= 45",
44
"wheel >= 0.30.0",
55
"setuptools_scm >= 6.2",
6-
# Copied from https://github.com/scipy/scipy/blob/1a72584820e53d83d5f6daab6c7fbafbe9af50d7/pyproject.toml
7-
# NOTE: if you update this, you'll need to update install_requires in setup.py
86
"Cython>=0.29.33",
9-
"numpy==1.22.0; platform_machine=='loongarch64'",
10-
"numpy==1.22.3; python_version=='3.9' and platform_system=='Windows' and platform_python_implementation != 'PyPy'",
11-
"numpy==1.22.3; python_version=='3.10' and platform_system=='Windows' and platform_python_implementation != 'PyPy'",
12-
"numpy==1.21.6; python_version=='3.9' and (platform_system!='Windows' and platform_machine!='loongarch64') and platform_python_implementation != 'PyPy'",
13-
"numpy==1.21.6; python_version=='3.10' and (platform_system!='Windows' and platform_machine!='loongarch64') and platform_python_implementation != 'PyPy'",
14-
"numpy==1.23.2; python_version=='3.11' and platform_python_implementation != 'PyPy'",
15-
"numpy; python_version>='3.12'",
16-
"numpy; python_version>='3.9' and platform_python_implementation=='PyPy'",
7+
"numpy>=1.21.6;",
178
]
189
build-backend = "setuptools.build_meta"
1910

@@ -24,7 +15,7 @@ write_to_template = "__version__ = \"{version}\""
2415
[tool.cibuildwheel]
2516
test-requires = "pytest"
2617
test-command = "pytest {project}/tests"
27-
build = "cp38-* cp39-* cp310-*"
18+
build = "cp37-* cp38-* cp39-* cp310-* cp311-*"
2819
# skip musl and ignore the non-standard linux builds
2920
skip = "*-musllinux_* *s390x* *ppc64le*"
3021
build-frontend = "build"

requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1 @@
1-
# https://github.com/scipy/scipy/blob/1a72584820e53d83d5f6daab6c7fbafbe9af50d7/setup.py#L452
21
numpy>=1.21.6

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,13 @@ classifiers =
1414
Operating System :: OS Independent
1515
Topic :: Scientific/Engineering :: Image Processing
1616
packages = qoi
17-
python_requires = >=3.6
17+
python_requires = >=3.9
1818
license = MIT
1919
keywords = qoi
2020

2121
[options]
2222
zip_safe = False
23-
python_requires = >=3.6
23+
python_requires = >=3.9
2424
package_dir = =src
2525
packages = find:
2626

0 commit comments

Comments
 (0)