summaryrefslogtreecommitdiff
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Update gitignoreSeth Morton2019-11-091-0/+3
|
* Add .venv to .gitignore.Seth M Morton2018-08-101-0/+1
|
* Add .envrc to .gitignore.Seth M Morton2018-05-111-0/+1
|
* Include .pytest_cache to .gitignore; remove .hgignore.Seth M Morton2018-05-111-0/+1
|
* Added PyCharm folder to .gitignore.Seth M Morton2016-12-311-0/+3
|
* Updated configuration files.Seth M Morton2016-03-071-0/+1
| | | | | | | | | | | Added all dependencies to the tox.ini, and removed python3.2. Removed 3.2 from the travis config, and added nightly builds and pypy. The hypothesis version mentioned in the setup.py was so old that it confused pip; this hypothesis version specification was removed. In both setup.py and travis config, the doctests have been consolidated.
* Now using the hypothesis library in tests.Seth M Morton2015-05-161-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The hypothesis library is awesome, and with it I found many holes in the natsort code that would have been difficult to find. This required rewriting most tests, and also creating two alternate number splitting functions for use in programmatically ensuring that numbers are split properly. Additionally, these tests found holes in the fastnumbers library, and fastnumbers was updated to account for these holes. natsort has been updated with new options and capabilities added to fastnumbers in this update. natsort now will only use the fastnumbers library if it is version 0.5.0 or greater. The new "num_only" option to fastnumbers check is used. The fake_fastnumbers code has been updated to better simulate the fastnumbers library. All number searching regular expressions have been updated to locate single unicode numeric characters like fastnumbers >= 0.5.0, and the fake_fastnumbers functions have been updated to support these characters. Many bugs have been fixed that were caught with hypothesis, including: - Using casefold() versus lower() on Python >= 3.3. - If an empty string was passed to UNGROUPLETTERS with LOCALE, an IndexError was raised; This has been fixed. - Extended the library of Unicode numerals that natsort is aware of. Because a programmatic search of these numbers would create costly imports, these values have been hard-coded in the unicode_numbers module. Previously not all numerals were known to natsort. - Fixed potential hard-to-find bug in the GROUPLETTERS option when letters that when case-folded contain two characters, not one, and the second character was dropped.
* Added .travis.yml for travis-ci.org.Seth M Morton2014-06-261-0/+1
|
* Switched from MANIFEST.in from MANIFESTSeth M Morton2012-08-051-0/+3
| | | | | --HG-- rename : MANIFEST => MANIFEST.in
* initial commitSeth Morton2012-05-021-0/+27