Update dependency python-dateutil to v2.8.2 #13
+1
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==2.6.1
->==2.8.2
Release Notes
dateutil/dateutil
v2.8.2
Compare Source
Version 2.8.2 (2021-07-08)
Data updates
Bugfixes
ValueError
exceptions would be raisedduring exception handling; this would happen, for example, if an
IllegalMonthError
was raised indateutil
code. Fixed by Mark Bailey.(gh issue #981, pr #987).
repr
fordateutil.parser.ParserError
, which was notdefined due to an indentation error. (gh issue #991, gh pr #993)
b'
prefixes to appear in parse_isodate exceptionmessages. Reported and fixed by Paul Brown (@pawl) (gh pr #1122)
isoparse
raise when trying to parse times with inconsistent use of:
separator. Reported and fixed by @mariocj89 (gh pr #1125).tz.gettz()
not returning local time when passed an empty string.Reported by @labrys (gh issues #925, #926). Fixed by @ffe4 (gh pr #1024)
Documentation changes
Exceptions" categories. (gh issue #992, pr #994).
parser.parse
documentation to reflect the switch fromValueError
toParserError
. (gh issue #992, pr #994).rrule
module not being displayed in the docs. (gh pr#1025)
document locations in the input tree, rather than the generated HTML files in
the HTML output tree (which presumably will not exist in non-HTML output
formats). (gh pr #1078).
Misc
test_imports.py
,test_internals.py
andtest_utils.py
topytest. Reported and fixed by @jpurviance (gh pr #978)
#975).
_parser._timelex
. Reportedand fixed by @frenzymadness (gh issue #1060).
binaries, since until GH-590 and GH-1059 are resolved, "slim" zic binaries
will cause problems in many zones, causing the tests to fail. This also
updates
zoneinfo.rebuild
to always generate fat binaries. (gh pr #1076).python-build
. Reported and fixed by@mariocj89 (gh pr #1133).
v2.8.1
Compare Source
Version 2.8.1 (2019-11-03)
Data updates
Bugfixes
tzoffset
andtzstr
"strong"caches on Python 2.7. Reported by @kainjow (gh issue #901).
ParserError
, a subclass ofValueError
, which has a nicer string representation. Patch by@gfyoung (gh pr #881).
parser.parse
will now raiseTypeError
whentzinfos
is passed atype that cannot be interpreted as a time zone. Prior to this
change, it would raise an
UnboundLocalError
instead. Patch by@jbrockmendel (gh pr #891).
bytes
object asthe time zone name to gettz in Python 3. Reported and fixed by
@labrys () (gh issue #927, gh pr #935).
release. Patch by Hugo van Kemenade (gh pr #950).
tz.UTC
in favor oftz.tzutc()
internally, to avoid an unnecessary function call. (gh pr #910).
dateutil.tz
was using a backported version ofcontextlib.nullcontext
even in Python 3.7 due to a malformedimport statement. (gh pr #963).
Tests
suite. (gh pr #969).
explicitly specified as an error in the warnings filter. (gh pr
#966)
test_tzlocal_offset_equal
would fail in certainenvironments (such as FreeBSD) due to an invalid assumption about
what time zone names are provided. Reported and fixed by Kubilay
Kocak (gh issue #918, pr #928).
test_isoparser
related tobytes
/str
handling. Fixed by @fhuang5 (gh issue #776, gh pr #879).
pr #915)
adoption of
pytest
-style tests and the addition of parametrizationof several test cases. Patches by @jbrockmendel (gh prs #735,
#890, #892, #894).
#891).
forbidden. Patch by @shadchin (gh pr #893).
Documentation changes
and documentation. Patch by Hugo van Kemenade (gh pr #952).
Misc
setup.py
tosetup.cfg
as possible. Fixedby @FakeNameSE, @aquinlan82, @jachen20, and @gurgenz221 (gh
issue #871, gh pr #880).
parser
methods by functionality. Patch by@jbrockmendel (gh pr #882).
release.py
over to usingpep517.build
for creatingreleases, rather than direct invocations of
setup.py
. Fixed by@smeng10 (gh issue #869, gh pr #875).
dependency management when making releases. Fixed by @smeng10 (gh
issue #870,r gh pr #876).
v2.8.0
Compare Source
v2.7.5
: Version 2.7.5 (2018-10-27)Compare Source
Data updates
v2.7.4
: Version 2.7.4 (2018-10-24)Compare Source
Data updates
v2.7.3
: Version 2.7.3 (2018-05-09)Compare Source
Data updates
Bugfixes
NaN
or infinite value in aparser.parse, which will raise decimal.Decimal-specific errors. Reported and
fixed by @amureki (gh issue #662, gh pr #679).
None
.Reported by @pganssle (gh issue #661) Fixed by @parsethis (gh pr #681)
in the form "%B.%Y.%d", e.g. "December.0031.30". (gh issue #687, pr #700)
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).
Documentation changes
notation in relativedelta examples. (gh issue #670, pr #711)
@pganssle (gh pr #671)
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)
@rmahajan14 (gh issue #686, gh pr #695).
dateutil.tz.gettz
. Reported by @pganssle (ghissue #647). Fixed by @weatherpattern (gh pr #704)
tz
documentation. (gh issue #702, gh pr#706)
configuration to go along with that. (gh pr #707)
dateutil.tz
documentation and fixed issue with thedateutil.tz
docstring. (gh pr #714)Misc
v2.7.2
: Version 2.7.2 (2018-03-26)Compare Source
Bugfixes
Reported and fixed by @gergondet (gh pr #651)
Misc
v2.7.1
: Version 2.7.1 (2018-03-24)Compare Source
Data updates
Bugfixes
decimal.Decimal-specific error types rather than ValueError. Reported by
@amureki (gh issue #632). Fixed by @pganssle (gh pr #636).
both aware. Reported and fixed by @ryanpetrello (gh issue #633, gh pr #634)
Misc
v2.7.0
: Version 2.7.0Compare Source
Apache 2.0 and BSD. (gh pr #542, issue #496)
(gh issue #406), fixed by @mariocj89 (gh pr #494)
version of dateutil. Fixed by @jakec-github (gh issue #537, pr #552)
gh pr #437)
reported by @nealmcb (gh issue #94)
Initial implementation by @pganssle in gh pr #489 and #622, with a
pre-release fix by @kirit93 (gh issue #546, gh pr #573).
of several private functions and classes from that module. (gh pr #501, #515)
@pbiering (gh pr #300)
fixed by @uckelman and @pganssle (gh pr #514)
cannot construct a tzinfo instance for (rather than succeeding with no
indication of an error). Reported and fixed by @jbrockmendel (gh pr #540)
reported and fixed by @jbrockmendel (gh pr #409)
by @jbrockmendel (gh pr #420)
by @heappro (gh pr #353), fixed by @jbrockmendel (gh pr #482)
@jbrockmendel (gh pr #481)
(gh issue #360), fixed by @jbrockmendel (gh pr #483)
Reported by @alexwlchan (gh issue #293).
datetime such that if possible the correct value for fold is set. Fixes
issue reported by @JordonPhillips and @pganssle (gh issue #318, #320,
gh pr #517)
@dddmello (gh issue #427), fixed by @m-dz (gh pr #570)
and fixed by @jbrockmendel (gh pr #589)
#490, #498, #539) and @pganssle (gh prs #435, #468)
by @mrigor (gh pr #389)
(gh issue #350, pr #472)
negative and positive values. Reported and fixed by @souliane (gh issue #459,
pr #460)
arguments of the relativedelta constructor would lead to errors during
addition. Reported by @arouanet (gh pr #411), fixed by @lkollar (gh pr #553)
for identical inputs. This will change the semantics of certain operations
between datetimes constructed with tzinfo=tz.gettz(...). (gh pr #628)
same inputs, with a corresponding performance improvement (gh pr #504)
same inputs. (gh pr #628)
allow the construction of a new instance if desired. (gh pr #628)
instance of the relevant tzinfo. (gh pr #628)
equality with tzoffset and tzutc. (gh pr #598)
evidently designed exclusively for dateutil, and very likely not used by
any current users. (gh issue #595, gh pr #606)
an imaginary one, if necessary. Implemented by @Cheukting (gh issue #339,
gh pr #607)
passed an invalid value for tzstr. Fixed by @pablogsal (gh issue #259,
gh pr #581)
and fixed by @lapointexavier (gh pr #601)
used the pre-3.6 pure Python implementation of datetime.replace, most
notably pypy3 (gh pr #446).
(gh issue #401) and fixed by @Unrud (gh pr #429)
omitted or DATE-TIME, per RFC 5545. Reported by @Unrud (gh pr #439)
fixed by @ryanpetrello (gh issue #614, gh pr #624)
compliance with the RFC. Reported by @AndrewPashkin (gh issue #86), fixed by
@jarondl and @mlorant (gh pr #450)
a version number from the git metadata. Reported by @jreback (gh issue #511),
implemented by @Sulley38 (gh pr #564)
installed versions of dateutil in CI. Fixed issue with parser import
discovered by @jreback in pandas-dev/pandas#18141. (gh issue #507, pr #509)
gh pr #579)
the test suites with pytest. Fixed by @lkollar. (gh issue #544, gh pr #548)
(gh issue #519, gh pr #563)
checkers. Reported and fixed by @quodlibetor (gh pr #485)
on all supported Python versions. Implemented by @jdufresne (gh pr #612)
gh pr #538)
fixed by @m-dz (gh issue #556, gh pr #557)
by @mariocj89 (gh issue #543, gh pr #555)
reported and fixed by @abrugh (gh pr #458)
@jdufresne (gh pr #476)
module documentation pages. Fixed by @Tomasz-Kluczkowski and @jakec-github
(gh pr #558, #561)
Fixed by @alexchamberlain (gh issue #545, gh pr #560)
CONTRIBUTING. Reported and fixed by @kynan (gh pr #562)
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.