summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #70 from kianmeng/fix-typosHEADmastergweis2022-03-137-10/+10
|\ | | | | Fix typos
| * Fix typosKian-Meng Ang2022-01-257-10/+10
| |
* | Merge pull request #66 from isodate/test-ghagweis2022-03-137-28/+26
|\ \ | |/ |/| Drop support for EOL Python <= 3.6
| * Join classifier stringHugo van Kemenade2022-03-121-1/+1
| |
| * Fix CIHugo van Kemenade2021-12-134-18/+6
| |
| * Update pre-commitHugo van Kemenade2021-12-131-4/+23
| |
| * Add python_requires to help pipHugo van Kemenade2021-12-131-0/+1
| |
| * Simplify cache configHugo van Kemenade2021-12-132-16/+3
| |
| * Drop support for Python <= 3.6Hugo van Kemenade2021-12-134-4/+7
|/
* changelogGerhard Weis2021-12-131-0/+1
|
* Merge branch 'PR64'Gerhard Weis2021-12-131-11/+12
|\ | | | | | | | | | | | | | | | | | | * PR64: Flake8 Remove type annotation to support python 2 Allow control over return type of parse_duration. # Conflicts: # src/isodate/isoduration.py
| * Flake8F.N. Claessen2021-03-041-2/+10
| |
| * Remove type annotation to support python 2F.N. Claessen2021-03-041-1/+1
| |
| * Allow control over return type of parse_duration.F.N. Claessen2021-02-251-9/+10
| |
* | - round down microseconds (in case precision is higher)Gerhard Weis2021-12-134-7/+16
| |
* | Merge branch 'PR16'Gerhard Weis2021-12-133-89/+57
|\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PR16: Don't match garbage characters at the end of time strings Don't match garbage characters at the end of date strings Factor in some regexes # Conflicts: # src/isodate/isodates.py # src/isodate/isotime.py
| * | Don't match garbage characters at the end of time stringsGabriel2015-01-201-13/+12
| | | | | | | | | | | | Addresses #15.
| * | Don't match garbage characters at the end of date stringsGabriel2015-01-201-26/+28
| | | | | | | | | | | | Addresses #15.
| * | Factor in some regexesGabriel2015-01-202-13/+4
| | | | | | | | | | | | | | | This is for date and time formats that differed in a single optional character.
* | | Merge branch 'PR60'Gerhard Weis2021-12-133-36/+39
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PR60: Use non-beta Python 3.8 on Travis Use Python 3.8 beta on Travis PEP8: 79 chars Use Xenial on Travis to test on Python3.7 Fix Python 3.8 DeprecationWarning Add support for py37 and py38 Raise warnings produced by isodate as errors during tests Avoid unclosed file warning # Conflicts: # .travis.yml # setup.py # src/isodate/duration.py # src/isodate/tests/__init__.py # tox.ini
| * | | Use non-beta Python 3.8 on TravisJose Eduardo2020-01-201-1/+1
| | | |
| * | | Use Python 3.8 beta on TravisJose Eduardo2019-07-191-1/+1
| | | |
| * | | PEP8: 79 charsJose Eduardo2019-07-191-2/+4
| | | |
| * | | Use Xenial on Travis to test on Python3.7Jose Eduardo2019-07-191-0/+1
| | | |
| * | | Fix Python 3.8 DeprecationWarningJose Eduardo2019-07-191-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ref: https://docs.python.org/3.8/whatsnew/3.8.html > Many builtin and extension functions that take integer arguments will > now emit a deprecation warning for Decimals, Fractions and any other > objects that can be converted to integers only with a loss (e.g. that > have the `__int__()` method but do not have the `__index__()` method). > In future version they will be errors. (Contributed by Serhiy > Storchaka in bpo-36048.)
| * | | Add support for py37 and py38Jose Eduardo2019-07-193-1/+7
| | | |
| * | | Raise warnings produced by isodate as errors during testsJose Eduardo2019-07-192-0/+5
| | | |
| * | | Avoid unclosed file warningJose Eduardo2019-07-191-1/+2
| | |/ | |/|
* | | Merge branch 'PR57'Gerhard Weis2021-12-1317-423/+29
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * PR57: remove the license from tests 1) move license to Project's root 2) add a missing sentence from 2-clause license 3-clause license ("BSD License 2.0", "Revised BSD License", "New BSD License", or "Modified BSD License"): [(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.] # Conflicts: # src/isodate/__init__.py # src/isodate/duration.py # src/isodate/isodates.py # src/isodate/isodatetime.py # src/isodate/isoduration.py # src/isodate/isoerror.py # src/isodate/isotime.py # src/isodate/isotzinfo.py # src/isodate/tests/__init__.py # src/isodate/tests/test_date.py # src/isodate/tests/test_datetime.py # src/isodate/tests/test_duration.py # src/isodate/tests/test_strf.py # src/isodate/tests/test_time.py
| * | | remove the license from testsAlexander Mangin2019-03-276-156/+0
| | | |
| * | | 1) move license to Project's rootAlexander Mangin2019-03-2711-260/+24
| |/ / | | | | | | | | | | | | 2) add a missing sentence from 2-clause license 3-clause license ("BSD License 2.0", "Revised BSD License", "New BSD License", or "Modified BSD License"): [(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.]
* | | Merge branch 'PR55'Gerhard Weis2021-12-131-7/+7
|\ \ \ | | | | | | | | | | | | | | | | | | | | * PR55: Update README.rst Fix typo in README and use constant formatting.
| * | | Update README.rstAlexander Seiler2020-12-291-1/+1
| | | | | | | | | | | | Co-authored-by: Hugo van Kemenade <hugovk@users.noreply.github.com>
| * | | Fix typo in README and use constant formatting.Alexander Seiler2018-11-291-7/+7
| |/ /
* | | forgot to add creditsGerhard Weis2021-12-131-1/+1
| | |
* | | bump versionGerhard Weis2021-12-134-5/+8
| | | | | | | | | | | | remove end-of-life python versions
* | | white spaceGerhard Weis2021-12-1318-971/+1206
| | |
* | | release 0.6.10.6.1Gerhard Weis2021-12-133-7/+6
| | |
* | | Test on Python 3.10 finalHugo van Kemenade2021-10-051-1/+1
| | |
* | | Fix for Python 3.10: TypeError: 'decimal.Decimal' object cannot be ↵Hugo van Kemenade2021-09-131-2/+6
| | | | | | | | | | | | interpreted as an integer
* | | Add support for Python 3.10Hugo van Kemenade2021-09-133-3/+7
| | |
* | | Move from Travis CI to GitHub Actions and Coveralls to CodecovHugo van Kemenade2021-09-136-35/+94
|/ /
* | Merge pull request #51 from hugovk/rm-eolgweis2018-08-033-5/+3
|\ \ | | | | | | Drop supported for EOL Python 2.6 and 3.3
| * | Drop support for EOL Python 3.3Hugo2018-04-293-4/+1
| | |
| * | Drop support for EOL Python 2.6Hugo2018-04-292-2/+3
|/ /
* | bump versionGerhard Weis2017-10-132-1/+7
| |
* | release 0.6.00.6.0Gerhard Weis2017-10-131-1/+1
| |
* | update changelogGerhard Weis2017-10-131-2/+4
| |
* | typoGerhard Weis2017-10-131-2/+2
| |
* | Merge pull request #45 from usrenmae/mastergweis2017-10-133-1/+17
|\ \ | | | | | | Be able to recognize time zones with fractional hours