summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Set version to 1.3.2, update change log.unidecode-1.3.2Tomaz Solc2021-09-162-1/+5
|
* Add GitHub actions configuration.Tomaz Solc2021-09-103-10/+33
|
* Update change log.unidecode-1.3.1Tomaz Solc2021-09-091-0/+3
|
* Set version to 1.3.1Tomaz Solc2021-09-091-1/+1
|
* Remove universal=1 from setup.cfgTomaz Solc2021-09-091-3/+0
| | | | | | This prevents the wheel from being installed on Python 2. https://packaging.python.org/guides/distributing-packages-using-setuptools/#wheels
* Fix changelog.unidecode-1.3.0Tomaz Solc2021-09-061-2/+2
|
* Set version to 1.3.0Tomaz Solc2021-09-061-1/+1
|
* Update change log.Tomaz Solc2021-09-061-0/+5
|
* Fix classifiers.Tomaz Solc2021-09-061-1/+1
|
* Improve Yiddish conversionAlon Bar-Lev2021-08-311-22/+22
| | | | | | Cleanup invalid characters and typos. Fixup special characters.
* Improve Hebrew conversionAlon Bar-Lev2021-08-311-14/+14
| | | | | | | | Cleanup special rearly used characters. Regular characters closer to formal document[1]. [1] https://hebrew-academy.org.il/wp-content/uploads/taatik-ivrit-latinit-1-1.pdf
* Add Python 3.9 to tox.iniTomaz Solc2021-04-041-1/+1
|
* Move README.rst to utf-8 encoding.Tomaz Solc2021-03-062-3/+3
| | | | | This also hopefully makes it clearer that Unidecode is not about decoding \u escapes.
* Add tox.ini to MANIFEST.inTomaz Solc2021-03-051-0/+1
|
* Add Python 3.8 to tox.iniTomaz Solc2021-03-051-1/+1
|
* support and test py 3.8kf@hydra2021-03-052-0/+2
|
* Add missing backslashes.Tomaz Solc2021-02-051-1/+1
|
* Make tox run tests through pytest.Tomaz Solc2021-02-052-9/+7
|
* Remove __init__.pyiTomaz Solc2021-02-053-11/+5
|
* More Python 2 compatibility code clean up.Tomaz Solc2021-02-053-16/+2
|
* Drop pypy from tox.iniTomaz Solc2021-02-051-1/+1
|
* Drop old Python versions from Travis.Tomaz Solc2021-02-051-3/+0
|
* Move Py3.5-compatible type annotations inline.Tomaz Solc2021-02-052-8/+4
|
* Add another FAQ.Tomaz Solc2021-02-051-3/+11
|
* Drop support for Python 2 and 3.4.Tomaz Solc2021-02-056-107/+64
|
* Set version to 1.2.0unidecode-1.2.0Tomaz Solc2021-02-051-1/+1
|
* Update change log.Tomaz Solc2021-02-051-0/+12
|
* Add warning about dropping Python 2.x and 3.4.Tomaz Solc2021-02-051-1/+4
|
* Add Typing stubs for the main API.Pascal Corpet2021-02-033-0/+12
| | | | See PEP 484 (for typing) and PEP 561 (for distributing types).
* Avoid exception chaining on Python 3.Tomaz Solc2021-01-082-4/+16
| | | | | | This avoids exceptions raised by errors='strict' from displaying as "During handling of the above exception ..." in the backtrace which can be confusing.
* Bump copyright date.Tomaz Solc2021-01-081-1/+1
|
* Convert examples in README to Python 3 syntax.Tomaz Solc2021-01-082-4/+4
|
* Add examples for the 'errors' argument.Tomaz Solc2021-01-081-1/+8
|
* Rename argument replace_char -> replace_strTomaz Solc2020-12-203-13/+13
|
* More mass replace '' -> NoneTomaz Solc2020-12-204-757/+757
| | | | See 35295352.
* Document the new errors argument.Tomaz Solc2020-12-201-0/+11
|
* Ignore coverage-related files.Tomaz Solc2020-12-201-0/+2
|
* Mass replace '[?] ' -> NoneTomaz Solc2020-12-2079-795/+795
| | | | | | | To make use of the new 'errors' argument. It seems that '[?] ' (with space) was used for code points that were assigned, but the replacement was not known.
* Mass replace '' -> None.Tomaz Solc2020-12-204-395/+395
| | | | | | | | | To make use of the new 'errors' argument. '' was used in the original Perl tables both to mean an unknown replacement and an intentional replacement with and empty string. Here I only replace it in ranges I've added later where I'm reasonably sure that '' means unknown replacement.
* Mass replace '[?]' -> NoneTomaz Solc2020-12-2045-3319/+3319
| | | | | | To make use of the new 'errors' argument. It seems '[?]' was used in the original Perl tables for unassigned codepoints.
* Add missing ligatures and quotes in U+1F6xx rangeTomaz Solc2020-12-201-0/+258
|
* Add missing quotation marks in the U+27xx range.Tomaz Solc2020-12-201-5/+5
|
* Add errors parameter to unidecode()Tomaz Solc2020-12-202-35/+112
| | | | This implements the idea in https://github.com/avian2/unidecode/pull/53
* Add test coverage to tox.iniTomaz Solc2020-12-201-2/+10
|
* Set version to 1.1.2, update ChangeLogunidecode-1.1.2Tomaz Solc2020-12-202-1/+5
|
* Fix U+204A "TIRONIAN SIGN ET"Tomaz Solc2020-12-061-1/+5
| | | | See https://github.com/avian2/unidecode/issues/57
* Add warning about offensiveness and more FAQs.Tomaz Solc2020-07-291-12/+39
|
* Bump copyright date.Tomaz Solc2020-07-291-1/+1
|
* Add some missing replacements in U+23xx page.Tomaz Solc2020-05-281-43/+43
| | | | | | Content of this commit by Marcoffee (Marco Ribeiro) on GitHub. https://github.com/marcoffee/unidecode/commit/705d91ad4c9c7755529d4be025170b11922f1dee
* Set version to 1.1.1, update ChangeLogunidecode-1.1.1Tomaz Solc2019-06-212-1/+4
|