Accepting request 820622 from devel:languages:python

OBS-URL: https://build.opensuse.org/request/show/820622
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-arrow?expand=0&rev=15
This commit is contained in:
Dominique Leuenberger 2020-07-15 10:11:40 +00:00 committed by Git OBS Bridge
commit 2bccff2a6f
4 changed files with 30 additions and 6 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:eb5d339f00072cc297d7de252a2e75f272085d1231a3723f1026d1fa91367118
size 83160

3
arrow-0.15.7.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3f1a92b25bbee5f80cc8f6bdecfeade9028219229137c559c37335b4f574a292
size 89278

View File

@ -1,3 +1,28 @@
-------------------------------------------------------------------
Sun Jul 12 21:40:32 UTC 2020 - Arun Persaud <arun@gmx.de>
- update to version 0.15.7:
* [NEW] Added a number of built-in format strings. See the docs for
a complete list of supported formats. For example:
>>> arw = arrow.utcnow()
>>> arw.format(arrow.FORMAT_COOKIE)
'Wednesday, 27-May-2020 10:30:35 UTC'
* [NEW] Arrow is now fully compatible with Python 3.9 and PyPy3.
* [NEW] Added Makefile, tox.ini, and requirements.txt files to the
distribution bundle.
* [NEW] Added French Canadian and Swahili locales.
* [NEW] Added humanize week granularity translation for Hebrew,
Greek, Macedonian, Swedish, Slovak.
* [FIX] ms and μs timestamps are now normalized in arrow.get(),
arrow.fromtimestamp(), and arrow.utcfromtimestamp(). For example:
>>> ts = 1591161115194556
>>> arw = arrow.get(ts)
<Arrow [2020-06-03T05:11:55.194556+00:00]>
>>> arw.timestamp
1591161115
* [FIX] Refactored and updated Macedonian, Hebrew, Korean, and
Portuguese locales.
-------------------------------------------------------------------
Fri May 15 21:33:05 UTC 2020 - Benjamin Greiner <code@bnavigator.de>

View File

@ -26,7 +26,7 @@
%endif
%bcond_without python2
Name: python-arrow%{?psuffix}
Version: 0.15.6
Version: 0.15.7
Release: 0
Summary: Better dates and times for Python
License: Apache-2.0
@ -82,8 +82,7 @@ rm -rf arrow.egg-info
%check
%if %{with test}
# remove pytest -cov* args. (Next release will move this to tox.ini)
rm setup.cfg
rm tox.ini
%pytest
%endif