Skip to content

Commit

Permalink
Add wheels for Python3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Nov 19, 2021
1 parent 7edf521 commit df568ca
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/releasebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down Expand Up @@ -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}}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.2
1.8.3
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Max Bachmann'

# The full version, including alpha/beta/rc tags
release = '1.8.2'
release = '1.8.3'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion src/rapidfuzz/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"""
__author__ = "Max Bachmann"
__license__ = "MIT"
__version__ = "1.8.2"
__version__ = "1.8.3"

from rapidfuzz import process, fuzz, utils, levenshtein, string_metric

0 comments on commit df568ca

Please sign in to comment.