Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update arrow requirement from ~=0.15.4 to ~=0.15.5 #6718

Merged
merged 1 commit into from Jan 3, 2020

Conversation

dependabot-preview[bot]
Copy link
Contributor

Updates the requirements on arrow to permit the latest version.

Release notes

Sourced from arrow's releases.

Version 0.15.5

  • [WARN] Python 2 reached EOL on 2020-01-01. arrow will drop support for Python 2 in a future release to be decided (see #739).
  • [NEW] Added bounds parameter to span_range, interval and span methods. This allows you to include or exclude the start and end values.
  • [NEW] arrow.get() can now create arrow objects from a timestamp with a timezone, for example:
>>> arrow.get(1367900664, tzinfo=tz.gettz('US/Pacific'))
<Arrow [2013-05-06T21:24:24-07:00]>
  • [NEW] humanize can now combine multiple levels of granularity, for example:
>>> later140 = arrow.utcnow().shift(seconds=+8400)
>>> later140.humanize(granularity="minute")
'in 139 minutes'
>>> later140.humanize(granularity=["hour", "minute"])
'in 2 hours and 19 minutes'
  • [NEW] Added Hong Kong locale (zh_hk).
  • [NEW] Added humanize week granularity translation for Dutch.
  • [NEW] Numbers are now displayed when using the seconds granularity in humanize.
  • [CHANGE] range now supports both the singular and plural forms of the frames argument (e.g. day and days).
  • [FIX] Improved parsing of strings that contain punctuation.
  • [FIX] Improved behaviour of humanize when singular seconds are involved.
Changelog

Sourced from arrow's changelog.

0.15.5 (2020-01-03)

  • [WARN] Python 2 reached EOL on 2020-01-01. arrow will drop support for Python 2 in a future release to be decided (see #739).
  • [NEW] Added bounds parameter to span_range, interval and span methods. This allows you to include or exclude the start and end values.
  • [NEW] arrow.get() can now create arrow objects from a timestamp with a timezone, for example:
>>> arrow.get(1367900664, tzinfo=tz.gettz('US/Pacific'))
<Arrow [2013-05-06T21:24:24-07:00]>
  • [NEW] humanize can now combine multiple levels of granularity, for example:
>>> later140 = arrow.utcnow().shift(seconds=+8400)
>>> later140.humanize(granularity="minute")
'in 139 minutes'
>>> later140.humanize(granularity=["hour", "minute"])
'in 2 hours and 19 minutes'
  • [NEW] Added Hong Kong locale (zh_hk).
  • [NEW] Added humanize week granularity translation for Dutch.
  • [NEW] Numbers are now displayed when using the seconds granularity in humanize.
  • [CHANGE] range now supports both the singular and plural forms of the frames argument (e.g. day and days).
  • [FIX] Improved parsing of strings that contain punctuation.
  • [FIX] Improved behaviour of humanize when singular seconds are involved.

0.15.4 (2019-11-02)

  • [FIX] Fixed an issue that caused package installs to fail on Conda Forge.

0.15.3 (2019-11-02)

  • [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"
</tr></table> ... (truncated)
Commits
  • c856ab9 Bump version to 0.15.5 and update CHANGELOG (#750)
  • 6adb8db Correct error in humanize() granularities for single seconds (#748)
  • 379e08f Add Arrow DST tests based on two false positives (#747)
  • b12f4a6 allowing plural 'name' arguments to _get_frames (#735)
  • b1b37ce Fixed arrow.get with a timestamp and a timezone string (#746)
  • 6a70b9d Added Hong Kong (zh_hk) locale (#742)
  • 1cd7f94 Revert support for negative timestamps on Windows (#745)
  • 70fb905 Merge pull request #741 from robinvd/master
  • 545dead add week to the dutch/nl locale
  • 5395fbb Merge pull request #722 from hwillard98/master
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
  • @dependabot use these labels will set the current labels as the default for future PRs for this repo and language
  • @dependabot use these reviewers will set the current reviewers as the default for future PRs for this repo and language
  • @dependabot use these assignees will set the current assignees as the default for future PRs for this repo and language
  • @dependabot use this milestone will set the current milestone as the default for future PRs for this repo and language
  • @dependabot badge me will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot dashboard:

  • Update frequency (including time of day and day of week)
  • Pull request limits (per update run and/or open at any time)
  • Automerge options (never/patch/minor, and dev/runtime dependencies)
  • Out-of-range updates (receive only lockfile updates, if desired)
  • Security updates (receive only security updates, if desired)

Updates the requirements on [arrow](https://github.com/crsmithdev/arrow) to permit the latest version.
- [Release notes](https://github.com/crsmithdev/arrow/releases)
- [Changelog](https://github.com/crsmithdev/arrow/blob/master/CHANGELOG.rst)
- [Commits](arrow-py/arrow@0.15.4...0.15.5)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
@codecov
Copy link

codecov bot commented Jan 3, 2020

Codecov Report

Merging #6718 into development will not change coverage.
The diff coverage is n/a.

Impacted file tree graph

@@             Coverage Diff              @@
##           development    #6718   +/-   ##
============================================
  Coverage        65.61%   65.61%           
============================================
  Files              300      300           
  Lines            15255    15255           
============================================
  Hits             10009    10009           
  Misses            5246     5246

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update 3260e98...e7ed7ed. Read the comment docs.

@iamareebjamal iamareebjamal merged commit e2a4c8f into development Jan 3, 2020
@iamareebjamal iamareebjamal deleted the dependabot/pip/arrow-approx-eq-0.15.5 branch January 3, 2020 21:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant