Skip to content

Commit

Permalink
Drop support for EOL Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Sep 26, 2023
1 parent d99745a commit 72f0cbf
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
test-cmd: [pytest]
include:
- python-version: "3.7"
- python-version: "3.8"
test-cmd: python setup.py check --restructuredtext --strict --metadata
- python-version: "3.11"
test-cmd: python setup.py check --restructuredtext --strict --metadata
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Fuzzy string matching like a boss. It uses `Levenshtein Distance <https://en.wik
Requirements
============

- Python 3.7 or higher
- Python 3.8 or higher
- `rapidfuzz <https://github.com/maxbachmann/RapidFuzz/>`_

For testing
Expand All @@ -21,14 +21,14 @@ For testing
Installation
============

Using PIP via PyPI
Using pip via PyPI

.. code:: bash
pip install thefuzz
Using PIP via Github
Using pip via GitHub

.. code:: bash
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,14 @@
packages=['thefuzz'],
# keep for backwards compatibility of projects depending on `thefuzz[speedup]`
extras_require={'speedup': []},
install_requires= ['rapidfuzz>=3.0.0, < 4.0.0'],
install_requires=['rapidfuzz>=3.0.0, < 4.0.0'],
url='https://github.com/seatgeek/thefuzz',
license="GPLv2",
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
Expand All @@ -37,5 +36,5 @@
description='Fuzzy string matching in python',
long_description=long_description,
zip_safe=True,
python_requires='>=3.7'
python_requires='>=3.8'
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{37, 38, 39, 310, 311, 312, py3}
envlist = py{38, 39, 310, 311, 312, py3}
skip_missing_interpreters = True

[testenv]
Expand Down

0 comments on commit 72f0cbf

Please sign in to comment.