15
0
forked from pool/python-arrow

Accepting request 747233 from home:apersaud:branches:devel:languages:python

update to latest version

OBS-URL: https://build.opensuse.org/request/show/747233
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-arrow?expand=0&rev=26
This commit is contained in:
Tomáš Chvátal
2019-11-11 12:42:38 +00:00
committed by Git OBS Bridge
parent e7281d1be4
commit 2cb9d44b72
4 changed files with 33 additions and 5 deletions

View File

@@ -1,3 +1,32 @@
-------------------------------------------------------------------
Sat Nov 9 14:44:41 UTC 2019 - Arun Persaud <arun@gmx.de>
- update to version 0.15.4:
* [FIX] Fixed an issue that caused package installs to fail on Conda
Forge.
- changes from version 0.15.3:
* [NEW] factory.get() can now create arrow objects from a ISO
calendar tuple, for example:
>>> arrow.get((2013, 18, 7))
<Arrow [2013-05-05T00:00:00+00:00]>
* [NEW] Added a new token x to allow parsing of integer timestamps
with milliseconds and microseconds.
* [NEW] Formatting now supports escaping of characters using the
same syntax as parsing, for example:
>>> arw = arrow.now()
>>> fmt = "YYYY-MM-DD h [h] m"
>>> arw.format(fmt)
'2019-11-02 3 h 32'
* [NEW] Added humanize week granularity translations for Chinese,
Spanish and Vietnamese.
* [CHANGE] Added ParserError to module exports.
* [FIX] Added support for midnight at end of day. See #703 for
details.
* [INTERNAL] Created Travis build for macOS.
* [INTERNAL] Test parsing and formatting against full timezone
database.
-------------------------------------------------------------------
Tue Sep 17 09:25:07 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>