Add wheels for Python3.6

This commit is contained in:
Max Bachmann 2021-11-19 09:15:20 +01:00
parent 7edf52150a
commit df568cafba
4 changed files with 5 additions and 5 deletions

View File

@ -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}}

View File

@ -1 +1 @@
1.8.2
1.8.3

View File

@ -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 ---------------------------------------------------

View File

@ -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