skip Python3.10 on MacOs for now

This commit is contained in:
Max Bachmann 2021-10-20 12:43:10 +02:00
parent f864527845
commit 1deba44d3b
6 changed files with 36 additions and 6 deletions

View File

@ -82,7 +82,36 @@ jobs:
fail-fast: false
matrix:
python_tag: ["cp37-*", "cp38-*", "cp39-*", "cp310-*"]
os: [windows-latest, macos-latest]
os: [windows-latest]
env:
CIBW_BUILD: ${{matrix.python_tag}}
CIBW_TEST_REQUIRES: pytest hypothesis pandas
CIBW_TEST_COMMAND: pytest {package}/tests
CIBW_BUILD_VERBOSITY: 3
steps:
- uses: actions/checkout@v2
with:
submodules: 'true'
- name: Build wheels
uses: pypa/cibuildwheel@v2.1.1
with:
output-dir: wheelhouse
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
path: ./wheelhouse/*.whl
build_wheels:
name: Build wheel on ${{ matrix.os }}/auto/${{matrix.python_tag}}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python_tag: ["cp37-*", "cp38-*", "cp39-*"]
os: [macos-latest]
env:
CIBW_BUILD: ${{matrix.python_tag}}
CIBW_TEST_REQUIRES: pytest hypothesis pandas
@ -110,7 +139,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python_tag: ["cp38-*", "cp39-*", "cp310-*"]
python_tag: ["cp38-*", "cp39-*"]
env:
CIBW_BUILD: ${{matrix.python_tag}}
CIBW_ARCHS_MACOS: "universal2 arm64"

View File

@ -1 +1 @@
1.7.1
1.8.0

View File

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

View File

@ -19,6 +19,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
License :: OSI Approved :: MIT License
[options]

@ -1 +1 @@
Subproject commit 831a23cad24b3baf7b846c5248e2e465bf461a87
Subproject commit 9cdaa85f76e3decd1d60855b96fdca1d5cb9002f

View File

@ -3,6 +3,6 @@ rapid string matching library
"""
__author__ = "Max Bachmann"
__license__ = "MIT"
__version__ = "1.7.1"
__version__ = "1.8.0"
from rapidfuzz import process, fuzz, utils, levenshtein, string_metric