Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: drop python 3.6 and 3.7 support #113

Merged
merged 1 commit into from
Aug 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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