Commit Graph

21 Commits

Author SHA256 Message Date
Dominique Leuenberger
70b70351fe Accepting request 744004 from devel:languages:python
- Replace %fdupes -s with plain %fdupes; hardlinks are better.

OBS-URL: https://build.opensuse.org/request/show/744004
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=9
2019-11-04 16:12:00 +00:00
1f0db1c766 - Replace %fdupes -s with plain %fdupes; hardlinks are better.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=20
2019-10-14 14:36:12 +00:00
Dominique Leuenberger
0262116be9 Accepting request 678904 from devel:languages:python
- Switch to _multibuild to not create buildcycle

- Update to 2.8.0 (2019-02-04)
  + Data updates
    * Updated tzdata version to to 2018i.
  + Features
    * Added support for EXDATE parameters when parsing rrule
      strings. Reported by @mlorant (gh issue #410), fixed by
      @nicoe (gh pr #859).
    * Added support for sub-minute time zone offsets in Python
      3.6+. Fixed by @cssherry (gh issue #582, pr #763)
    * Switched the tzoffset, tzstr and gettz caches over to using
      weak references, so that the cache expires when no other
      references to the original tzinfo objects exist. This cache-
      expiry behavior is not guaranteed in the public interface and
      may change in the future. To improve performance in the case
      where transient references to the same time zones are
      repeatedly created but no strong reference is continuously
      held, a smaller “strong value” cache was also added. Weak
      value cache implemented by @cs-cordero (gh pr #672, #801),
      strong cache added by Gökçen Nurlu (gh issue #691, gh pr
      #761)
  + Bugfixes
    * Added time zone inference when initializing an rrule with a
      specified UNTIL but without an explicitly specified DTSTART;
      the time zone of the generated DTSTART will now be taken from
      the UNTIL rule. Reported by @href (gh issue #652). Fixed by
      @absreim (gh pr #693).
    * Fixed an issue where parser.parse would raise Decimal-
      specific errors instead of a standard ValueError if certain

OBS-URL: https://build.opensuse.org/request/show/678904
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=8
2019-02-26 21:15:38 +00:00
Tomáš Chvátal
2515ba7977 - Switch to _multibuild to not create buildcycle
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=18
2019-02-25 12:06:33 +00:00
Tomáš Chvátal
96fadf1edb Accepting request 677993 from home:frispete:python
- Update to 2.8.0 (2019-02-04)
  + Data updates
    * Updated tzdata version to to 2018i.
  + Features
    * Added support for EXDATE parameters when parsing rrule
      strings. Reported by @mlorant (gh issue #410), fixed by
      @nicoe (gh pr #859).
    * Added support for sub-minute time zone offsets in Python
      3.6+. Fixed by @cssherry (gh issue #582, pr #763)
    * Switched the tzoffset, tzstr and gettz caches over to using
      weak references, so that the cache expires when no other
      references to the original tzinfo objects exist. This cache-
      expiry behavior is not guaranteed in the public interface and
      may change in the future. To improve performance in the case
      where transient references to the same time zones are
      repeatedly created but no strong reference is continuously
      held, a smaller “strong value” cache was also added. Weak
      value cache implemented by @cs-cordero (gh pr #672, #801),
      strong cache added by Gökçen Nurlu (gh issue #691, gh pr
      #761)
  + Bugfixes
    * Added time zone inference when initializing an rrule with a
      specified UNTIL but without an explicitly specified DTSTART;
      the time zone of the generated DTSTART will now be taken from
      the UNTIL rule. Reported by @href (gh issue #652). Fixed by
      @absreim (gh pr #693).
    * Fixed an issue where parser.parse would raise Decimal-
      specific errors instead of a standard ValueError if certain
      malformed values were parsed (e.g. NaN or infinite values).
      Reported and fixed by @amureki (gh issue #662, gh pr #679).

OBS-URL: https://build.opensuse.org/request/show/677993
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=17
2019-02-21 12:00:56 +00:00
Dominique Leuenberger
730b5b54f5 Accepting request 659610 from devel:languages:python
Remove superfluous devel dependency for noarch package

OBS-URL: https://build.opensuse.org/request/show/659610
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=7
2018-12-26 23:27:54 +00:00
fa4ce3f0e2 Remove superfluous devel dependency for noarch package
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=15
2018-12-04 13:55:25 +00:00
Dominique Leuenberger
b2ca90e98b Accepting request 631025 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/631025
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=6
2018-08-31 07:47:49 +00:00
Tomáš Chvátal
bb47bbba31 Accepting request 631018 from home:alarrosa:branches:devel:languages:python
- Update to version 2.7.3
  * Update tzdata to 2018e. (gh pr #710)
  * Fixed an issue where decimal.Decimal would cast `NaN` or infinite value in a
    parser.parse, which will raise decimal.Decimal-specific errors. Reported and
    fixed by @amureki (gh issue #662, gh pr #679).
  * Fixed a ValueError being thrown if tzinfos call explicity returns ``None``.
    Reported by @pganssle (gh issue #661) Fixed by @parsethis (gh pr #681)
  * Fixed incorrect parsing of certain dates earlier than 100 AD when repesented
    in the form "%B.%Y.%d", e.g. "December.0031.30". (gh issue #687, pr #700)
  * Fixed a bug where automatically generated DTSTART was naive even if a
    specified UNTIL had a time zone. Automatically generated DTSTART will now
    take on the timezone of an UNTIL date, if provided. Reported by @href (gh
    issue #652). Fixed by @absreim (gh pr #693).
  * Corrected link syntax and updated URL to https for ISO year week number
    notation in relativedelta examples. (gh issue #670, pr #711)
  * Add doctest examples to tzfile documentation. Done by @weatherpattern and
    @pganssle (gh pr #671)
  * Updated the documentation for relativedelta. Removed references to tuple
    arguments for weekday, explained effect of weekday(_, 1) and better explained
    the order of operations that relativedelta applies. Fixed by @kvn219
    @huangy22 and @ElliotJH (gh pr #673)
  * Added changelog to documentation. (gh issue #692, gh pr #707)
  * Changed order of keywords in rrule docstring. Reported and fixed by
    @rmahajan14 (gh issue #686, gh pr #695).
  * Added documentation for ``dateutil.tz.gettz``. Reported by @pganssle (gh
    issue #647). Fixed by @weatherpattern (gh pr #704)
  * Cleaned up malformed RST in the ``tz`` documentation. (gh issue #702, gh pr
    #706)
  * Changed the default theme to sphinx_rtd_theme, and changed the sphinx
    configuration to go along with that. (gh pr #707)

OBS-URL: https://build.opensuse.org/request/show/631018
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=13
2018-08-23 07:13:29 +00:00
Dominique Leuenberger
87b731de8d Accepting request 509321 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/509321
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=5
2017-07-17 07:00:45 +00:00
Thomas Bechtold
61a1528232 Accepting request 509266 from home:alois:branches:devel:languages:python
Update to 2.6.1

OBS-URL: https://build.opensuse.org/request/show/509266
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=11
2017-07-11 04:37:33 +00:00
Dominique Leuenberger
5e57fc90a7 Accepting request 493133 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/493133
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=4
2017-05-09 15:58:54 +00:00
Todd R
c340afcbf8 Accepting request 493124 from home:TheBlackCat:branches:devel:languages:python
Don't provide python2-dateutil, singlespec packages should use correct name.

OBS-URL: https://build.opensuse.org/request/show/493124
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=9
2017-05-06 04:25:58 +00:00
Dominique Leuenberger
6248d3247d Accepting request 483978 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/483978
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=3
2017-04-19 16:06:10 +00:00
Thomas Bechtold
3c872fbdba Accepting request 483324 from home:alois:branches:devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/483324
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=7
2017-03-31 06:47:26 +00:00
Dominique Leuenberger
07efceec5b Accepting request 439323 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/439323
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=2
2016-11-10 12:14:10 +00:00
0376d24c32 Accepting request 439318 from home:tbechtold:branches:devel:languages:python
- Use https for Source

OBS-URL: https://build.opensuse.org/request/show/439318
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=5
2016-11-09 08:46:45 +00:00
Thomas Bechtold
5ab5581c7e Accepting request 439260 from home:alois:branches:devel:languages:python
Update to 2.6.0

OBS-URL: https://build.opensuse.org/request/show/439260
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=4
2016-11-08 17:30:27 +00:00
Dominique Leuenberger
730d8e2d86 Accepting request 366048 from devel:languages:python
Renamed python-dateutil to match python package naming policies.

OBS-URL: https://build.opensuse.org/request/show/366048
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-python-dateutil?expand=0&rev=1
2016-03-16 09:40:27 +00:00
Todd R
82e884314c Accepting request 365760 from home:tbechtold:branches:devel:languages:python
- Fix Obsoletes. No version upgrade was done during renaming.

OBS-URL: https://build.opensuse.org/request/show/365760
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=2
2016-03-04 15:44:53 +00:00
8d1c64a23e Accepting request 361661 from home:tbechtold:branches:devel:languages:python
Rename python-dateutil to python-python-dateutil

OBS-URL: https://build.opensuse.org/request/show/361661
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-python-dateutil?expand=0&rev=1
2016-02-26 13:07:04 +00:00