Skip to content

Commit

Permalink
Drop support for Python 3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
andialbrecht committed Jul 24, 2023
1 parent 9765fce commit 2bc8d9c
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-20.04 # keep it on 20.04 to have Python 3.5 and 3.6 available
strategy:
matrix:
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 3 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
Development Version
-------------------

Nothing yet.
Notable Changes

* Drop support for Python 3.5.


Release 0.4.4 (Apr 18, 2023)
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ python-sqlparse - Parse SQL statements
sqlparse is a non-validating SQL parser for Python.
It provides support for parsing, splitting and formatting SQL statements.

The module is compatible with Python 3.5+ and released under the terms of the
The module is compatible with Python 3.6+ and released under the terms of the
`New BSD license <https://opensource.org/licenses/BSD-3-Clause>`_.

Visit the project page at https://github.com/andialbrecht/sqlparse for
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
Expand All @@ -28,7 +27,7 @@ classifiers = [
"Topic :: Database",
"Topic :: Software Development",
]
requires-python = ">=3.5"
requires-python = ">=3.6"

[project.urls]
Home = "https://github.com/andialbrecht/sqlparse"
Expand Down
2 changes: 1 addition & 1 deletion sqlparse/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from sqlparse import formatter


__version__ = '0.4.5.dev0'
__version__ = '0.5.0.dev0'
__all__ = ['engine', 'filters', 'formatter', 'sql', 'tokens', 'cli']


Expand Down

0 comments on commit 2bc8d9c

Please sign in to comment.