exclude cmake on arm machines (#224)

This commit is contained in:
Max Bachmann 2022-06-22 16:23:35 +02:00 committed by GitHub
parent 29abf8fd2b
commit 109f94778e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 13 additions and 9 deletions

View File

@ -1,6 +1,10 @@
## Changelog
### [2.0.12] - 2022-*
### [2.0.13] - 2022-06-22
#### Changed
- use system version of cmake on arm platforms, since the cmake package fails to compile
### [2.0.12] - 2022-06-22
#### Changed
- add tests to sdist
- remove cython dependency for sdist

View File

@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann'
author = 'Max Bachmann'
# The full version, including alpha/beta/rc tags
release = '2.0.12'
release = '2.0.13'
# -- General configuration ---------------------------------------------------

View File

@ -2,8 +2,8 @@
requires = [
"setuptools>=42",
"scikit-build>=0.13.0",
"cmake",
"ninja; platform_system!='Windows'",
"cmake; platform_machine not in 'armv7l|armv6l|arm64|aarch64'",
"ninja; platform_system!='Windows' and platform_machine not in 'armv7l|armv6l|arm64|aarch64'",
"oldest-supported-numpy",
"Cython==3.0.0a10",
"rapidfuzz_capi==1.0.5"

View File

@ -3,7 +3,7 @@ rapid string matching library
"""
__author__ = "Max Bachmann"
__license__ = "MIT"
__version__ = "2.0.12"
__version__ = "2.0.13"
from rapidfuzz import (
process,

View File

@ -6,7 +6,7 @@ with open('README.md', 'rt', encoding="utf8") as f:
setup(
name="rapidfuzz",
version="2.0.12",
version="2.0.13",
install_requires=["jarowinkler >= 1.0.3, < 1.1.0"],
extras_require={'full': ['numpy']},
url="https://github.com/maxbachmann/RapidFuzz",

View File

@ -1,10 +1,10 @@
diff --git a/pyproject.toml b/pyproject.toml
index 3f46c01..f0c66b5 100644
index 77ff739..1c08c4c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,7 +5,6 @@ requires = [
"cmake",
"ninja; platform_system!='Windows'",
"cmake; platform_machine not in 'armv7l|armv6l|arm64|aarch64'",
"ninja; platform_system!='Windows' and platform_machine not in 'armv7l|armv6l|arm64|aarch64'",
"oldest-supported-numpy",
- "Cython==3.0.0a10",
"rapidfuzz_capi==1.0.5"