Skip to content

Commit

Permalink
Remove support for Python3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Jan 24, 2022
1 parent 259a84e commit 7e0aeec
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 32 deletions.
28 changes: 1 addition & 27 deletions .github/workflows/pythonbuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,32 +8,6 @@ on:
- published

jobs:
build_legacy:
name: Build wheel for legacy Python versions
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
env:
CIBW_BUILD: cp35-*
CIBW_BUILD_VERBOSITY: 3

steps:
- uses: actions/checkout@v2
with:
submodules: 'true'

- name: Build wheels
uses: pypa/[email protected]
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 }}
Expand Down Expand Up @@ -173,7 +147,7 @@ jobs:

deploy-wheels:
if: github.event_name == 'release' && github.event.action == 'published'
needs: [build_legacy, build_wheels, build_wheels_apple_silicon, build_wheels_manylinux, build_wheels_pypy, build_sdist]
needs: [build_wheels_apple_silicon, build_wheels_manylinux, build_wheels_pypy, build_sdist]
name: deploy wheels to pypi
runs-on: ubuntu-18.04

Expand Down
3 changes: 3 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Changelog

### v0.17.0
* Removed support for Python 3.5

### v0.16.1
* Add support for RapidFuzz v1.9.*

Expand Down
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 = '0.16.1'
release = '0.17.0'

# -- General configuration ---------------------------------------------------

Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = Levenshtein
version = 0.16.1
version = 0.17.0
url = https://github.com/maxbachmann/Levenshtein
author = Max Bachmann
author_email = [email protected]
Expand All @@ -12,7 +12,6 @@ license = GPL
license_file = COPYING
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Expand All @@ -26,7 +25,7 @@ include_package_data = True
package_dir=
=src
packages = find:
python_requires = >=3.5
python_requires = >=3.6
install_requires =
rapidfuzz >= 1.8.2, < 2.0

Expand Down
2 changes: 1 addition & 1 deletion src/Levenshtein/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

__author__ = "Max Bachmann"
__license__ = "GPL"
__version__ = "0.16.1"
__version__ = "0.17.0"

from rapidfuzz import string_metric as _string_metric

Expand Down

0 comments on commit 7e0aeec

Please sign in to comment.