summaryrefslogtreecommitdiff
path: root/setup.cfg
Commit message (Collapse)AuthorAgeFilesLines
* Switch to pyproject.toml (fixes #685).Andi Albrecht2022-12-301-55/+0
|
* Acknowledge support for Python 3.10Christian Clauss2022-08-081-0/+1
| | | | A subset of #645 Follow on to #661
* Move setup data to setup.cfg.Andi Albrecht2020-10-071-0/+43
|
* Merge branch 'master' into w503Andi Albrecht2020-09-131-8/+0
|\
| * Merge branch 'master' into py2Andi Albrecht2020-09-131-3/+0
| |\
| | * Remove deprecated license_file from setup.cfgJon Dufresne2020-09-131-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Starting with wheel 0.32.0 (2018-09-29), the "license_file" option is deprecated. https://wheel.readthedocs.io/en/stable/news.html The wheel will continue to include LICENSE, it is now included automatically: https://wheel.readthedocs.io/en/stable/user_guide.html#including-license-files-in-the-generated-wheel-file
| * | Remove support for end-of-life PythonsJon Dufresne2020-08-311-5/+0
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Simply flake8 configurationJon Dufresne2020-08-311-2/+1
|/ | | | W503 is ignored by default.
* Include license file in the generated wheel packageJon Dufresne2017-10-281-0/+3
| | | | | | | | The wheel package format supports including the license file. This is done using the [metadata] section in the setup.cfg file. For additional information on this feature, see: https://wheel.readthedocs.io/en/stable/index.html#including-the-license-in-the-generated-wheel-file
* Rename section to [bdist_wheel] as [wheel] is considered "legacy"Jon Dufresne2017-05-171-1/+1
| | | | | | | | See: https://bitbucket.org/pypa/wheel/src/54ddbcc9cec25e1f4d111a142b8bfaa163130a61/wheel/bdist_wheel.py?fileviewer=file-view-default#bdist_wheel.py-119:125 http://pythonwheels.com/
* Clean-up CIVictor Uriarte2017-02-071-2/+0
| | | | Remove noisy pytest options too
* Update pytest cfgVictor Uriarte2016-12-221-1/+3
| | | | | Move to new ini header Add verbose output
* Add test_cli.pyVictor Uriarte2016-06-151-1/+6
| | | | | | | References: http://stackoverflow.com/questions/18160078/how-do-you-write-tests-for-the-argparse-portion-of-a-python-module http://dustinrcollins.com/testing-python-command-line-apps https://github.com/mdklatt/cookiecutter-python-app
* Add right marging and options testsVictor Uriarte2016-06-111-0/+3
| | | | | | | Make pytest alert of any passing tests marked to fail Idea is to include tests for un-fixed bugs. If they are passing we want to know
* Update init and misc filesVictor Uriarte2016-06-061-0/+7
|
* Add setup.cfg. Closes #165Victor Uriarte2016-06-041-0/+2
|
* Revert "Support universal wheels"Tim Graham2015-10-241-2/+0
| | | | | | This reverts commit f6a0017f2e4666f274d427d28533c99cbd747a5a. It's incompatible because the project uses 2to3.
* Support universal wheelsThomas Grainger2015-10-021-0/+2