Skip to content

Commit

Permalink
feat!: drop python 3.6 and 3.7 support
Browse files Browse the repository at this point in the history
Drop support for Python 3.6 and 3.7, which have reached the end of their
lives. See https://endoflife.date/python.
  • Loading branch information
jpvanhal committed Aug 7, 2023
1 parent 6b0296d commit 5951820
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,6 @@ jobs:
- name: "Python 3.8"
python: "3.8"

- name: "Python 3.7"
python: "3.7"

- name: "PyPy"
python: "pypy3.9"

Expand Down
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ Changelog

Here you can see the full list of changes between each SQLAlchemy-Searchable release.

Unreleased
^^^^^^^^^^

- **BREAKING CHANGE**: Drop support for Python 3.6 and 3.7

1.4.1 (2021-06-15)
^^^^^^^^^^^^^^^^^^
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Installation
pip install SQLAlchemy-Searchable


Supported versions are python 2.7 and 3.3+.
Supported versions are Python 3.8 and newer.


QuickStart
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def get_version():
zip_safe=False,
include_package_data=True,
platforms='any',
python_requires='>=3.6',
python_requires='>=3.8',
install_requires=[
'SQLAlchemy>=1.3.0',
'SQLAlchemy-Utils>=0.37.5',
Expand All @@ -50,8 +50,6 @@ def get_version():
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = {py36,py37,py38,py39,pypy3}-sqla{1.3,1.4}, lint
envlist = {py38,py39,pypy3}-sqla{1.3,1.4}, lint

[testenv]
deps=
Expand Down

0 comments on commit 5951820

Please sign in to comment.