-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from Unidata/v1.4.0rel
prepare for v1.4.0 release
- Loading branch information
Showing
12 changed files
with
768 additions
and
759 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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,8 +1,10 @@ | ||
from ._cftime import utime, JulianDayFromDate, DateFromJulianDay, UNIT_CONVERSION_FACTORS | ||
from ._cftime import _parse_date, date2index, time2index, datetime, real_datetime | ||
from ._cftime import DatetimeNoLeap, DatetimeAllLeap, Datetime360Day, DatetimeJulian, \ | ||
DatetimeGregorian, DatetimeProlepticGregorian | ||
from ._cftime import datetime, real_datetime, _parse_date | ||
from ._cftime import num2date, date2num, date2index, time2index, num2pydate | ||
from ._cftime import microsec_units, millisec_units, \ | ||
sec_units, hr_units, day_units, min_units | ||
from ._cftime import num2date, date2num, date2index, num2pydate | ||
sec_units, hr_units, day_units, min_units,\ | ||
UNIT_CONVERSION_FACTORS | ||
from ._cftime import __version__ | ||
# legacy functions in _cftime_legacy.pyx | ||
from ._cftime import DatetimeNoLeap, DatetimeAllLeap, Datetime360Day, DatetimeJulian, \ | ||
DatetimeGregorian, DatetimeProlepticGregorian | ||
from ._cftime import utime, JulianDayFromDate, DateFromJulianDay |
Oops, something went wrong.