-
-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Since its last release[0], the heavily used arrow library supports ISO week dates[1]. The CLI tests assumed that arrow does not support this. However, the new version nullified this assumption. As a provisional measure, the version of arrow was limited upwards in PR #372[2]. An obsolete version was thereby requested. A current version, or at least support for one, is important for third-party package managers. Especially GNU/Linux distributions prefer to use their own package manager to install software over pip. Thus, this commit removes both the restriction to an outdated arrow version in the requirements.txt and validates previously invalid marked week dates. [0]:https://github.com/crsmithdev/arrow/releases/tag/0.15.6 [1]:https://en.wikipedia.org/wiki/ISO_week_date [2]:#372
- Loading branch information
Showing
3 changed files
with
10 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
arrow!=0.11,!=0.12.0,<0.15.6 | ||
arrow>=0.15.6 | ||
click>=7.0 | ||
click-didyoumean | ||
colorama; sys_platform == "win32" | ||
requests | ||
requests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters