summaryrefslogtreecommitdiff
path: root/sqlparse/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* Switch back to development mode.HEADmasterAndi Albrecht2023-04-181-1/+1
|
* Bump version.Andi Albrecht2023-04-181-1/+1
|
* Switch back to development mode.Andi Albrecht2022-09-231-1/+1
|
* Bump version.0.4.3Andi Albrecht2022-09-231-1/+1
|
* Switch back to development mode.Andi Albrecht2021-09-101-1/+1
|
* Update Changelog and bump version.Andi Albrecht2021-09-101-1/+1
|
* Switch back to development mode.Andi Albrecht2020-10-081-1/+1
|
* Bump version.0.4.1Andi Albrecht2020-10-081-1/+1
|
* Switch back to development mode.Andi Albrecht2020-10-071-1/+1
|
* Bump version to 0.4.0.0.4.0Andi Albrecht2020-10-071-1/+1
|
* Update copyright notice.Andi Albrecht2020-10-071-1/+1
|
* Remove support for end-of-life PythonsJon Dufresne2020-08-311-4/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python 2.7 and 3.4 are end-of-life. They are no longer receiving bug fixes, including for security issues. Python 2.7 went EOL on 2020-01-01 and 3.4 on 2019-03-18. For additional details on support Python versions, see: Supported: https://devguide.python.org/#status-of-python-branches EOL: https://devguide.python.org/devcycle/#end-of-life-branches Removing support for EOL Pythons will reduce testing and maintenance resources while allowing the library to move towards modern Python 3. Using pypinfo, we can show the PyPI download statistics, showing less than 10% of users are using Python 2.7. | python_version | percent | download_count | | -------------- | ------: | -------------: | | 3.7 | 45.36% | 3,056,010 | | 3.6 | 26.46% | 1,782,778 | | 3.8 | 12.22% | 823,213 | | 2.7 | 9.97% | 671,459 | | 3.5 | 5.86% | 394,846 | | 3.4 | 0.10% | 6,700 | | 3.9 | 0.03% | 2,346 | | 2.6 | 0.00% | 57 | | 3.3 | 0.00% | 21 | | 3.10 | 0.00% | 6 | | Total | | 6,737,436 | Library users who continue to use Python 2.7 will still be able to install previous versions of sqlparse. Compatibility shims have been dropped, simplifying the code. Using pyupgrade, the codebase has been updated to take advantage of modern syntax <https://github.com/asottile/pyupgrade>. The wheel is no longer marked as "universal" as it is now Python 3 only.
* Switch back to develoment mode.Andreas Albrecht2020-02-291-1/+1
|
* Update version number for release.0.3.1Andreas Albrecht2020-02-291-1/+1
|
* Switch back to development.Andi Albrecht2019-03-111-1/+1
|
* Bump version.0.3.0Andi Albrecht2019-03-111-1/+1
|
* Update copyright header (fixes #372).Andi Albrecht2018-07-311-1/+2
|
* Switch back to development.Andi Albrecht2017-09-271-1/+1
|
* This is 0.2.4.0.2.4Andi Albrecht2017-09-271-1/+1
|
* Switch back to development version.Andi Albrecht2017-03-021-1/+1
|
* Bump version.0.2.3Andi Albrecht2017-03-021-1/+1
|
* Switch back to development mode.Andi Albrecht2016-10-221-1/+1
|
* Bump version.0.2.2Andi Albrecht2016-10-221-1/+1
|
* Correct license link (fixes #288).Andi Albrecht2016-09-141-1/+1
|
* Convert string literals to unicode for Py27Oleg Broytman2016-08-311-1/+1
| | | | | | Working with non-ascii in Python require all-unicode approach, but str literals in Python 2.7 are bytes. The patch makes them unicode. Syntax u'' is supported in Python 2.7 and 3.3+.
* Back to development mode.Andi Albrecht2016-08-131-1/+1
|
* This is 0.2.1.0.2.1Andi Albrecht2016-08-131-1/+1
|
* Switch back to development version.Andi Albrecht2016-07-201-1/+1
|
* Bump version to 0.2.0.0.2.0Andi Albrecht2016-07-201-1/+1
|
* Separate __main__ and main() to allow for testingVictor Uriarte2016-06-151-1/+2
| | | | | Also reference example in: https://github.com/ionelmc/cookiecutter-pylibrary
* Clarify `split` text processing on __init__.pyVictor Uriarte2016-06-151-2/+2
|
* Update init and misc filesVictor Uriarte2016-06-061-8/+9
|
* Refactor filter-stack to simplify logicVictor Uriarte2016-06-041-1/+0
| | | | | | if (self.stmtprocess or self.postprocess or self.split_statements or self._grouping): always evaluates to true after removing unused features
* Remove undocumented featuresVictor Uriarte2016-06-041-6/+0
| | | | | | These features/function/classes were added for AntiORM. Quick look-up didn't show any usage outside of AntiORM. Closes #246
* Add or Update copyright year to filesVictor Uriarte2016-06-041-2/+4
|
* Remove redundant functionsVictor Uriarte2016-06-021-1/+1
|
* Refactor format function signatureVictor Uriarte2016-06-021-2/+1
| | | | easier way to get encoding variable
* Fix small typo in documentationDag Wieers2016-05-261-2/+2
|
* Code cleanup.Andi Albrecht2016-04-031-7/+5
|
* Remove SQLParseError from top-level module.Andi Albrecht2015-10-261-2/+0
|
* Skip tests for SQLParseError for now, it will go away soon.Andi Albrecht2015-10-261-1/+1
|
* Use compat module for single Python 2/3 code base.Andi Albrecht2015-10-261-1/+2
| | | | This change includes minor fixes and code cleanup too.
* Switch back to development.Andi Albrecht2015-10-251-1/+1
|
* Bump version for 0.1.18 release.Tim Graham2015-10-241-1/+1
|
* Switch back to development mode.Andi Albrecht2015-10-241-1/+1
|
* Bump version number.0.1.17Andi Albrecht2015-10-241-1/+1
|
* Switch back to development.Andi Albrecht2015-07-261-1/+1
|
* Prepare next release.0.1.16Andi Albrecht2015-07-261-1/+1
|
* Switch back to development mode.Andi Albrecht2015-04-151-1/+1
|
* Update version number.0.1.15Andi Albrecht2015-04-151-1/+1
|