Add wheels for Python3.6
This commit is contained in:
parent
7edf52150a
commit
df568cafba
|
@ -81,7 +81,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python_tag: ["cp37-*", "cp38-*", "cp39-*", "cp310-*"]
|
||||
python_tag: ["cp36-*", "cp37-*", "cp38-*", "cp39-*", "cp310-*"]
|
||||
os: [windows-latest]
|
||||
env:
|
||||
CIBW_BUILD: ${{matrix.python_tag}}
|
||||
|
@ -110,7 +110,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python_tag: ["cp37-*", "cp38-*", "cp39-*", "cp310-*"]
|
||||
python_tag: ["cp36-*", "cp37-*", "cp38-*", "cp39-*", "cp310-*"]
|
||||
os: [macos-latest]
|
||||
env:
|
||||
CIBW_BUILD: ${{matrix.python_tag}}
|
||||
|
|
|
@ -22,7 +22,7 @@ copyright = '2021, Max Bachmann'
|
|||
author = 'Max Bachmann'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '1.8.2'
|
||||
release = '1.8.3'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -3,6 +3,6 @@ rapid string matching library
|
|||
"""
|
||||
__author__ = "Max Bachmann"
|
||||
__license__ = "MIT"
|
||||
__version__ = "1.8.2"
|
||||
__version__ = "1.8.3"
|
||||
|
||||
from rapidfuzz import process, fuzz, utils, levenshtein, string_metric
|
||||
|
|
Loading…
Reference in New Issue