-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We were using two default dates during date parsing, but one of them had a month of 02 (February). When parsing a date that is just a day of the month, like "30", the Python datetime library would throw an exception against the default date, because there's no day 30 in February.
- Loading branch information
1 parent
11b94e7
commit c7d23ac
Showing
4 changed files
with
8 additions
and
2 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
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 |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
raise RuntimeError("libhxl requires Python 3 or higher") | ||
|
||
setup(name='libhxl', | ||
version='4.7', | ||
version='4.7.1', | ||
description='Python support for the Humanitarian Exchange Language (HXL).', | ||
author='David Megginson', | ||
author_email='[email protected]', | ||
|
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