summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Remove py32 from tests and broken image link in docsHEADmasterMichael Twomey2017-07-274-6/+9
|
* Added tag 0.1.12 for changeset e40c1644a590Michael Twomey2017-07-270-0/+0
|
* Add .python-version (from pyenv) to hgignore0.1.12Michael Twomey2017-07-271-0/+1
|
* Create release 0.1.12 and add python 3.6 to testsMichael Twomey2017-07-273-1/+5
|
* Merged in felixschwarz/pyiso8601/fix-module-docstring (pull request #7)Michael Twomey2016-02-180-0/+0
|\ | | | | | | fix class reference for iso8601.Utc in module docstring
* | fix class reference for iso8601.Utc in module docstringfix-module-docstringFelix Schwarz2016-02-121-1/+1
|/ | | | | | | | | The reference to "iso8601.iso8601.Utc" is not wrong but not what Utc.__repr__() actually returns (since 29752e308996). In Python 3.2+ we use Python's UTC implementation (so we get a different __repr__() output) but I guess that won't confuse users too much.
* Export FixedOffset in __all__Julien Danjou2016-01-261-1/+2
| | | | Fixes #20
* Fix FixedOffset comparisonJulien Danjou2015-11-182-3/+5
| | | | Fixes #19
* Do not use custom timezone implementation on Python ? 3.2Julien Danjou2015-11-081-49/+55
| | | | | | | Python ? 3.2 has a timezone class that we can use directly for FixedOffset and UTC. Fixes #17
* Updating for 0.1.12Michael Twomey2015-11-042-1/+4
|
* Added tag 0.1.11 for changeset 5bd62903e2e6Michael Twomey2015-11-030-0/+0
|
* Update README for release and add more pythons for testing0.1.11Michael Twomey2015-11-034-4/+9
|
* Remove debug loggingQuentin Pradet2015-10-301-5/+0
|
* Add support for , as separator for fractional partLinus Wallgren2015-07-012-1/+2
|
* Add pypy 3 into tox test configMichael Twomey2014-10-062-1/+2
|
* Add python 3.4 to tox tests and update doc linksMichael Twomey2014-10-022-3/+12
|
* Added tag 0.1.10 for changeset 0f02cc55100aMichael Twomey2014-10-020-0/+0
|
* Adding the all important downloads badgeMichael Twomey2014-03-241-0/+2
|
* Adding the all important committers sectionMichael Twomey2014-02-271-5/+7
|
* Adding API reference to docsMichael Twomey2014-02-274-5/+25
|
* Adding proper documentationMichael Twomey2014-02-277-1/+756
| | | | This is a start, currently it's the README.rst content.
* Merged in issue-14-YYYY-MM (pull request #4)Julien Danjou2014-02-274-21/+47
|\ | | | | | | Fix parsing of YYYY-MM and add YYYY
| * Fix parsing of YYYY-MM and add YYYYMichael Twomey2014-02-274-21/+47
|/ | | | | | Fixes #14 (https://bitbucket.org/micktwomey/pyiso8601/issue/14/regression-yyyy-mm-no-longer-parses) Bump version to 1.10
* Added tag 0.1.9 for changeset 4b511368cef1Michael Twomey2014-02-260-0/+0
|
* Tweaking test output slightly and add wheel as a depenendency0.1.9Michael Twomey2014-02-262-4/+5
|
* Bumping to 0.1.9 and releasing.Michael Twomey2014-02-263-1/+8
|
* tests: fix remaining testsJulien Danjou2014-02-182-5/+4
|
* Raise error on YYYYMM or YYMMDDJulien Danjou2014-02-182-10/+12
|
* Raise error when parsing year with wrong number for yearsjulien2014-02-182-18/+23
| | | | Closes #12
* test: fix test cases on errorjulien2014-02-181-11/+12
| | | | | | | The syntax used on pytest.mark.parametrize was wrong and therefore the argument "invalid_date" was passed as a tuple: whatever the value in that tuple was, the parsing function was always failing because the data type was wrong.
* Added tag 0.1.8 for changeset 01161826be6eMichael Twomey2013-10-220-0/+0
|
* Fix encoding of README.rst and update tests to catch encoding issues0.1.8Michael Twomey2013-10-223-4/+11
| | | | | | Fixes #10 Thanks to klmitch
* Added tag 0.1.7 for changeset 1881bf20e595Michael Twomey2013-10-190-0/+0
|
* Update to 0.1.70.1.7Michael Twomey2013-10-192-1/+6
|
* Add isoformat() tests for all parsed datesMichael Twomey2013-10-191-22/+24
| | | | Also test round tripping from isoformat()
* Merged in dims/pyiso8601 (pull request #3)Michael Twomey2013-10-190-0/+0
|\ | | | | | | Fix for regression when parsing microseconds
| * Added tag 0.1.6 for changeset 462f8303fc39Michael Twomey2013-10-190-0/+0
| |
* | Fix for regression when parsing microsecondsDavanum Srinivas2013-10-182-1/+2
|/
* Handle negative timezone offsets correctly0.1.6Michael Twomey2013-10-183-23/+34
| | | | | | | | | | I had dropped the negative minutes in a braino and had incorrectly updated tests to match. I've added a isoformat field to the tests, so I can correctly assert they formatted date looks right. Thanks to Jonathan Lange for reporting this and a patch. Fixes #8
* Added testcase from https://code.google.com/p/pyiso8601/issues/detail?id=14Michael Twomey2013-10-181-0/+3
|
* Added testcase from https://code.google.com/p/pyiso8601/issues/detail?id=16Michael Twomey2013-10-181-0/+1
|
* Added testcase from https://code.google.com/p/pyiso8601/issues/detail?id=17Michael Twomey2013-10-181-0/+1
|
* Bumping setup version to 0.1.6Michael Twomey2013-10-181-1/+1
|
* Added tag 0.1.5 for changeset bd89974951daMichael Twomey2013-10-170-0/+0
|
* Update README with more details on supported ISO 8601 formats0.1.5Michael Twomey2013-10-171-7/+48
|
* Handle compact date formatMichael Twomey2013-10-173-1/+3
| | | | | | Thanks to rvandolson@esri.com Fixes #6
* Z always specifies UTC nowMichael Twomey2013-10-173-1/+10
| | | | | | Thanks to vfaronov Fixes #5
* Ensure parsing of timezones without separators worksMichael Twomey2013-10-172-1/+3
| | | | | | Thanks to joe.walton.gglcd Fixes #4
* Fix pickling / deepcopy of returned datetime objectsMichael Twomey2013-10-173-0/+10
| | | | | | Thanks to fogathmann and john@openlearning.com Fixes #3
* Fix microsecond rounding issuesMichael Twomey2013-10-173-2/+6
| | | | | | Thanks to nielsenb@jetfuse.net Fixes #2