summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Set version to 1.3.6Tomaz Solc2022-09-301-1/+1
|
* Set version to 1.3.5unidecode-1.3.5Tomaz Solc2022-09-281-1/+1
|
* Set version to 1.3.4unidecode-1.3.4Tomaz Solc2022-03-101-1/+1
|
* Set version to 1.3.3unidecode-1.3.3Tomaz Solc2022-02-191-1/+1
|
* Set version to 1.3.2, update change log.unidecode-1.3.2Tomaz Solc2021-09-161-1/+1
|
* Set version to 1.3.1Tomaz Solc2021-09-091-1/+1
|
* Set version to 1.3.0Tomaz Solc2021-09-061-1/+1
|
* Fix classifiers.Tomaz Solc2021-09-061-1/+1
|
* Move README.rst to utf-8 encoding.Tomaz Solc2021-03-061-1/+1
| | | | | This also hopefully makes it clearer that Unidecode is not about decoding \u escapes.
* support and test py 3.8kf@hydra2021-03-051-0/+1
|
* Remove __init__.pyiTomaz Solc2021-02-051-1/+1
|
* Drop support for Python 2 and 3.4.Tomaz Solc2021-02-051-3/+1
|
* Set version to 1.2.0unidecode-1.2.0Tomaz Solc2021-02-051-1/+1
|
* Add Typing stubs for the main API.Pascal Corpet2021-02-031-0/+1
| | | | See PEP 484 (for typing) and PEP 561 (for distributing types).
* Set version to 1.1.2, update ChangeLogunidecode-1.1.2Tomaz Solc2020-12-201-1/+1
|
* Set version to 1.1.1, update ChangeLogunidecode-1.1.1Tomaz Solc2019-06-211-1/+1
|
* Set version to 1.1.0unidecode-1.1.0Tomaz Solc2019-06-141-1/+1
|
* Merge remote-tracking branch 'jdufresne/pyreq'Tomaz Solc2019-01-191-0/+1
|\
| * Pass python_requires argument to setuptoolsJon Dufresne2018-12-311-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Helps pip decide what version of the library to install. Include this information in the README as well. These versions were already documented as trove classifiers. https://packaging.python.org/guides/distributing-packages-using-setuptools/#python-requires > If your project only runs on certain Python versions, setting the > python_requires argument to the appropriate PEP 440 version specifier > string will prevent pip from installing the project on other Python > versions. https://setuptools.readthedocs.io/en/latest/setuptools.html#new-and-changed-setup-keywords > python_requires > > A string corresponding to a version specifier (as defined in PEP 440) > for the Python version, used to specify the Requires-Python defined in > PEP 345.
* | Add trove classifier for Python 3.7 supportJon Dufresne2019-01-051-0/+1
| |
* | Use a context manager to always close the file after openingJon Dufresne2018-12-311-1/+2
|/ | | | | | | | | | | | Fixes the following warning when Python warnings are enabled during tests: setup.py:9: ResourceWarning: unclosed file <_io.TextIOWrapper name='README.rst' mode='r' encoding='UTF-8'> return open(os.path.join(os.path.dirname(__file__), "README.rst")).read() To enable warnings, use the pass the -Walways argument to Python: https://docs.python.org/3/using/cmdline.html#cmdoption-w
* Set version to 1.0.23unidecode-1.0.23Tomaz Solc2018-11-191-1/+1
|
* Drop support for EOL Python 2.6 & 3.3Jon Dufresne2018-06-301-2/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Python 2.6 and 3.3 are end of life. They are no longer receiving bug fixes, including for security issues. Python 2.6 went EOL on 2013-10-29 and 3.3 on 2017-09-29. For additional details on supported Python versions, see: https://devguide.python.org/#status-of-python-branches Removing support for EOL Pythons will reduce testing and maintenance resources. Using pypinfo, here are the download statistics for Unidecode over the last 30 days, showing minimal 3.3 & 2.6 installs. $ pypinfo --percent unidecode pyversion | python_version | percent | download_count | | -------------- | ------- | -------------- | | 2.7 | 66.07% | 244,263 | | 3.6 | 19.69% | 72,777 | | 3.5 | 8.27% | 30,585 | | 3.4 | 5.59% | 20,663 | | 3.7 | 0.29% | 1,062 | | 2.6 | 0.06% | 210 | | 3.8 | 0.02% | 72 | | 3.3 | 0.01% | 44 | | 3.2 | 0.00% | 6 | | None | 0.00% | 2 |
* Set version to 1.0.22Tomaz Solc2018-01-051-1/+1
| | | | | | | | | | | | | | | Traditionally Python Unidecode followed the versioning scheme used by the original Perl module. This doesn't make sense any more because: 1) Perl Text::Unidecode itself switched to a different versioning scheme long ago http://search.cpan.org/~sburke/Text-Unidecode-1.30/ 2) Python Unidecode has now sufficiently diverged from Perl version so that matched version numbers are no longer useful, 3) setuptools (>= 8) began mangling version numbers, yielding confusion because Unidecode 0.04.x now sometimes appears as 0.4.x https://github.com/pypa/setuptools/issues/302
* Update classifiersHugo2017-10-121-0/+8
|
* Set version to 0.04.21release-0.04.21Tomaz Solc2017-06-281-1/+1
|
* Merge branch 'add-confusables'Tomaz Solc2017-01-091-1/+1
|\ | | | | | | | | Conflicts: setup.py
| * Set version to 0.04.20Tomaz Solc2016-10-201-1/+1
| |
* | Add vim modeline.Tomaz Solc2016-11-251-0/+1
| |
* | Fix indentation, mixed tabs + spaces in setup.pyTomaz Solc2016-11-251-24/+25
|/ | | | Thanks to Adam Chainz.
* Set version to 0.04.19Tomaz Solc2016-01-211-1/+1
|
* Set version to 0.04.18Tomaz Solc2015-06-131-1/+1
|
* Use full path when loading README.rstTomaz Solc2015-05-251-1/+5
|
* Use entry_points for the commandline utility.Tomaz Solc2015-05-131-0/+6
|
* Move README to README.rstTomaz Solc2015-05-131-1/+1
|
* One test file for both Python 2.x and 3.xTomaz Solc2015-05-131-0/+2
|
* Use setuptools in setup.pyTomaz Solc2015-05-131-34/+1
|
* Increased version to 0.04.17Tomaz Solc2014-12-181-1/+1
|
* Increased version to 0.04.16release-0.04.16Tomaz Solc2014-05-111-1/+1
|
* Increased version to 0.04.15release-0.04.15Tomaz Solc2014-05-111-1/+1
|
* Increased version to 0.04.14release-0.04.14Tomaz Solc2013-09-201-1/+1
|
* Increased version to 0.04.13release-0.04.13Tomaz Solc2013-05-301-1/+1
|
* Increased version to 0.04.12release-0.04.12Tomaz Solc2013-01-281-1/+1
|
* Increased version to 0.04.11release-0.04.11Tomaz Solc2013-01-171-1/+1
|
* Python 2.5 compatible way of running tests.Tomaz Solc2013-01-171-4/+10
|
* Increased version to 0.04.10release-0.04.10Tomaz Solc2012-12-011-1/+1
|
* Adding trove classifiers.Tomaz Solc2012-10-021-1/+10
| | | | Thanks to Thomas Kluyver.
* Increased version to 0.04.9release-0.04.9Tomaz Solc2011-09-231-1/+1
|
* Fix installation issue with Python 2.5Tomaz Solc2011-09-231-7/+1
|
* Setting author's proper non-ASCII name.Tomaz Solc2011-09-221-1/+7
| | | | Compatible with both Python 2.x and 3.x.