summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* fix rst formatting and make new release0.5.4Gerhard Weis2015-08-062-3/+3
|
* bump versionGerhard Weis2015-08-061-1/+1
|
* update changelog and prepare releaseGerhard Weis2015-08-062-1/+9
|
* Merge pull request #25 from reinhrst/mastergweis2015-08-062-0/+80
|\ | | | | Add multiplication to duration
| * python 2.6 fixClaude2015-08-041-4/+4
| |
| * Add multiplication to durationClaude2015-08-042-0/+80
|/
* test with pypy3 as wellGerhard Weis2015-06-232-1/+2
|
* enable python 3.4 in travisGerhard Weis2015-06-231-1/+2
|
* Merge pull request #24 from gfairchild/mastergweis2015-06-232-1/+25
|\ | | | | Make Duration objects hashable
| * fixing misspellingGeoffrey Fairchild2015-06-221-1/+1
| |
| * Duration objects are now hashableGeoffrey Fairchild2015-06-222-0/+24
|/
* Merge pull request #23 from nikolas/patch-2gweis2015-05-191-1/+1
|\ | | | | Fix typo in readme
| * Fix typo in readmenikolas2015-05-181-1/+1
| |
* | Merge pull request #22 from nikolas/patch-1gweis2015-05-191-1/+1
|\ \ | |/ |/| fix typo in setup.py description
| * fix typo in setup.py descriptionnikolas2015-05-181-1/+1
|/
* Merge pull request #20 from tofu-rocketry/new_readme_shieldsgweis2015-04-011-6/+6
|\ | | | | Update shields in README.rst
| * Update shields in README.rstAdrian2015-03-261-6/+6
| | | | | | Update README to take advantage of SVG shields that are now available as they scale to any size and this corrects the inconsistent appearance of the Coveralls shield.
* | Merge pull request #19 from tofu-rocketry/all_string_listgweis2015-04-011-14/+14
|\ \ | | | | | | Change '__all__' in top 'init' to list of strings
| * | Change __all__ in top init to be list of stringsAdrian Coveney2015-02-261-14/+14
| |/ | | | | | | | | - Change __all__ in top level __init__.py to be a list of strings which is what it should be.
* | Merge pull request #18 from Polyconseil/fbochu/iso8601-period-regexpgweis2015-04-011-1/+2
|\ \ | | | | | | Fix ISO8601_PERIOD_REGEX to not match 'P'
| * | Fix ISO8601_PERIOD_REGEX to not match 'P'Fabien Bochu2015-03-101-1/+2
| |/
* | Merge pull request #17 from tofu-rocketry/flake_updategweis2015-04-013-28/+28
|\ \ | |/ |/| Move line breaks after operators
| * Move line breaks after operatorsAdrian Coveney2015-02-263-28/+28
|/ | | | | - Move line breaks to after operators as per PEP8 as Flake has started picking up on this in a newer version.
* bump to 0.5.2-devGerhard Weis2014-11-071-1/+1
|
* release 0.5.10.5.1Gerhard Weis2014-11-072-4/+5
|
* add Python 3.4 to list of supported versionsGerhard Weis2014-11-072-1/+2
|
* Merge pull request #12 from tofu-rocketry/datetime_input_handlinggweis2014-11-072-4/+15
|\ | | | | Make parse_datetime raise ISO8601Error if no 'T'
| * Make parse_datetime raise ISO8601Error if no 'T'Adrian Coveney2014-08-192-4/+15
| | | | | | | | | | | | | | | | | | - Make parse_datetime raise ISO8601Error if time designator 'T' is missing as before it would raise a ValueError that was hard to interpret. - Alter test_parse for test_datetime to check that bad inputs raise an ISO8601 error. The other tests did this, but test_datetime didn't. - Add test case where the 'T' time designator is missing from input datetime strings.
* | Merge pull request #11 from tofu-rocketry/flake_fixesgweis2014-11-075-11/+11
|\ \ | | | | | | Fix flake errors
| * | Fix flake errorsAdrian Coveney2014-08-185-11/+11
| |/
* | fix duration pickle for all protocols and all supported python versions and ↵Gerhard Weis2014-11-072-4/+28
|/ | | | variants. (closes #10)
* added various badgesGerhard Weis2014-02-271-1/+15
|
* type in envvarGerhard Weis2014-02-271-1/+1
|
* ignore coverage reportsGerhard Weis2014-02-271-0/+2
|
* only report coverage for main moduleGerhard Weis2014-02-272-1/+4
| | | | fix coveralls itegration (hopefully)
* run flake and coverage tests via toxGerhard Weis2014-02-272-2/+22
|
* make flake happyGerhard Weis2014-02-2717-262/+329
|
* back to developmentGerhard Weis2014-02-233-2/+9
| | | | fix travis badge
* prepare release 0.5.00.5.0Gerhard Weis2014-02-231-2/+6
|
* move travis-ci badge underneath titleGerhard Weis2014-02-231-2/+2
|
* update setup.py to read correct README fileGerhard Weis2014-02-231-3/+3
|
* rename README.txt to README.rstGerhard Weis2014-02-231-1/+2
|
* add travis-ci testingGerhard Weis2014-02-232-0/+20
|
* Closes #8. Added tests stated in issue #8, but can’t reproduce this error ↵Gerhard Weis2014-02-231-15/+27
| | | | across all tested python versions.
* update trove classifiers to show all supported python versionsGerhard Weis2013-01-251-2/+5
|
* make sure months and years are DecimalGerhard Weis2013-01-251-1/+14
| | | | | use floor divmod with Decimal instances. closes #5
* add tox configurationGerhard Weis2013-01-252-0/+8
|
* implement unittest2 load_tests protocolGerhard Weis2013-01-257-17/+24
|
* rename todatetime to totimedelta on Duration.Gerhard Weis2013-01-242-1/+15
| | | | | added some tests for the same function closes #4
* - raise Exception for unsupported operations with duration and date/datetime ↵Gerhard Weis2013-01-243-8/+29
| | | | | | | | objects - store year and month as Decimal in Duration object. - added test cases to support changes closes #2