python-dateutil
Advanced tools
+1
-0
@@ -60,2 +60,3 @@ This is a (possibly incomplete) list of all the contributors to python-dateutil, | ||
| - Peter Bieringer <pb@MASKED> | ||
| - Pierre Gergondet <pierre.gergondet@MASKED> (gh: @gergondet) | ||
| - Quentin Pradet <quentin@MASKED> | ||
@@ -62,0 +63,0 @@ - Roy Williams <rwilliams@MASKED> |
| # coding: utf-8 | ||
| # file generated by setuptools_scm | ||
| # don't change, don't track in version control | ||
| version = '2.7.1' | ||
| version = '2.7.2' |
+16
-0
@@ -0,1 +1,17 @@ | ||
| Version 2.7.2 (2018-03-26) | ||
| ========================== | ||
| Bugfixes | ||
| -------- | ||
| - Fixed an issue with the setup script running in non-UTF-8 environment. | ||
| Reported and fixed by @gergondet (gh pr #651) | ||
| Misc | ||
| ---- | ||
| - GH #655 | ||
| Version 2.7.1 (2018-03-24) | ||
@@ -2,0 +18,0 @@ =========================== |
+5
-3
| Metadata-Version: 2.1 | ||
| Name: python-dateutil | ||
| Version: 2.7.1 | ||
| Version: 2.7.2 | ||
| Summary: Extensions to the standard Python datetime module | ||
@@ -15,3 +15,3 @@ Home-page: https://dateutil.readthedocs.io | ||
| .. image:: https://img.shields.io/pypi/v/python-dateutil.svg?style=flat-square | ||
| :target: https://pypi.python.org/pypi/python-dateutil/ | ||
| :target: https://pypi.org/project/python-dateutil/ | ||
| :alt: pypi version | ||
@@ -43,3 +43,3 @@ | ||
| dateutil is available on PyPI | ||
| https://pypi.python.org/pypi/python-dateutil/ | ||
| https://pypi.org/project/python-dateutil/ | ||
@@ -51,2 +51,3 @@ The documentation is hosted at: | ||
| ==== | ||
| The code and issue tracker are hosted on Github: | ||
| https://github.com/dateutil/dateutil/ | ||
@@ -155,2 +156,3 @@ | ||
| https://pgp.mit.edu/pks/lookup?op=vindex&search=0xCD54FCE3D964BEFB | ||
| Platform: UNKNOWN | ||
@@ -157,0 +159,0 @@ Classifier: Development Status :: 5 - Production/Stable |
+1
-0
@@ -6,2 +6,3 @@ [tool.towncrier] | ||
| directory = "changelog.d" | ||
| title_format = "Version {version} ({project_date})" | ||
| issue_format = "GH #{issue}" | ||
@@ -8,0 +9,0 @@ template = "changelog.d/template.rst" |
| Metadata-Version: 2.1 | ||
| Name: python-dateutil | ||
| Version: 2.7.1 | ||
| Version: 2.7.2 | ||
| Summary: Extensions to the standard Python datetime module | ||
@@ -15,3 +15,3 @@ Home-page: https://dateutil.readthedocs.io | ||
| .. image:: https://img.shields.io/pypi/v/python-dateutil.svg?style=flat-square | ||
| :target: https://pypi.python.org/pypi/python-dateutil/ | ||
| :target: https://pypi.org/project/python-dateutil/ | ||
| :alt: pypi version | ||
@@ -43,3 +43,3 @@ | ||
| dateutil is available on PyPI | ||
| https://pypi.python.org/pypi/python-dateutil/ | ||
| https://pypi.org/project/python-dateutil/ | ||
@@ -51,2 +51,3 @@ The documentation is hosted at: | ||
| ==== | ||
| The code and issue tracker are hosted on Github: | ||
| https://github.com/dateutil/dateutil/ | ||
@@ -155,2 +156,3 @@ | ||
| https://pgp.mit.edu/pks/lookup?op=vindex&search=0xCD54FCE3D964BEFB | ||
| Platform: UNKNOWN | ||
@@ -157,0 +159,0 @@ Classifier: Development Status :: 5 - Production/Stable |
@@ -22,7 +22,2 @@ .gitattributes | ||
| changelog.d/.gitignore | ||
| changelog.d/0633.bugfix.rst | ||
| changelog.d/0634.bugfix.rst | ||
| changelog.d/0643.data.rst | ||
| changelog.d/0644.misc.rst | ||
| changelog.d/648.misc | ||
| changelog.d/template.rst | ||
@@ -29,0 +24,0 @@ ci_tools/retry.bat |
+4
-3
@@ -5,3 +5,3 @@ dateutil - powerful extensions to datetime | ||
| .. image:: https://img.shields.io/pypi/v/python-dateutil.svg?style=flat-square | ||
| :target: https://pypi.python.org/pypi/python-dateutil/ | ||
| :target: https://pypi.org/project/python-dateutil/ | ||
| :alt: pypi version | ||
@@ -33,3 +33,3 @@ | ||
| dateutil is available on PyPI | ||
| https://pypi.python.org/pypi/python-dateutil/ | ||
| https://pypi.org/project/python-dateutil/ | ||
@@ -41,2 +41,3 @@ The documentation is hosted at: | ||
| ==== | ||
| The code and issue tracker are hosted on Github: | ||
| https://github.com/dateutil/dateutil/ | ||
@@ -144,2 +145,2 @@ | ||
| .. _6B49 ACBA DCF6 BD1C A206 67AB CD54 FCE3 D964 BEFB: | ||
| https://pgp.mit.edu/pks/lookup?op=vindex&search=0xCD54FCE3D964BEFB | ||
| https://pgp.mit.edu/pks/lookup?op=vindex&search=0xCD54FCE3D964BEFB |
+3
-1
@@ -12,2 +12,4 @@ #!/usr/bin/python | ||
| import io | ||
| if isfile("MANIFEST"): | ||
@@ -31,3 +33,3 @@ os.unlink("MANIFEST") | ||
| def README(): | ||
| with open('README.rst') as f: | ||
| with io.open('README.rst', encoding='utf-8') as f: | ||
| readme_lines = f.readlines() | ||
@@ -34,0 +36,0 @@ |
| Fixed issue where parser.parse would occasionally raise decimal.Decimal-specific error types rather than ValueError. Reported by @amureki (gh issue #632). Fixed by @pganssle (gh pr #636). |
| Improve error message when rrule's dtstart and until are not both naive or both aware. Reported and fixed by @ryanpetrello (gh issue #633, gh pr #634) |
| Updated tzdata version to 2018d. |
| Updated license metadata and trove classifiers (gh prs #630 and #644). |
Sorry, the diff of this file is not supported yet
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
14780
0.01%983863
-0.01%75
-6.25%