14
0

Accepting request 822653 from home:mcalabkova:branches:devel:languages:python

- update to 4.0.0
  * Removed ``strptime`` function in favor of
    `datetime.datetime.strptime`. If passing
    a ``tzinfo`` parameter, instead invoke `.replace(tzinfo=...)`
    on the result.
  * Deprecated ``divide_timedelta`` and ``divide_timedelta_float``
    now that Python supports this functionality natively.
  * Deprecated ``Parser`` class. The
    'dateutil.parser' provides more sophistication.

OBS-URL: https://build.opensuse.org/request/show/822653
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-tempora?expand=0&rev=21
This commit is contained in:
Tomáš Chvátal
2020-07-24 14:06:57 +00:00
committed by Git OBS Bridge
parent 158c3d144b
commit 5143ad312f
4 changed files with 20 additions and 8 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Fri Jul 24 12:28:31 UTC 2020 - Marketa Calabkova <mcalabkova@suse.com>
- update to 4.0.0
* Removed ``strptime`` function in favor of
`datetime.datetime.strptime`. If passing
a ``tzinfo`` parameter, instead invoke `.replace(tzinfo=...)`
on the result.
* Deprecated ``divide_timedelta`` and ``divide_timedelta_float``
now that Python supports this functionality natively.
* Deprecated ``Parser`` class. The
'dateutil.parser' provides more sophistication.
-------------------------------------------------------------------
Tue Apr 14 09:12:12 UTC 2020 - Matej Cepl <mcepl@suse.com>