Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | API: Make datetime64 timezone naive | Stephan Hoyer | 2016-01-15 | 1 | -25/+37 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes GH3290 With apologies to mwiebe, this rips out most of the time zone parsing from the datetime64 type. I think we mostly sorted out the API design in discussions last year, but I'll be posting this to the mailing list shortly to get feedback. Old behavior: # string parsing and printing defaults to your local timezone :( >>> np.datetime64('2000-01-01T00') numpy.datetime64('2000-01-01T00:00-0800','h') New behavior: # datetime64 is parsed and printed as timezone naive >>> np.datetime64('2000-01-01T00') numpy.datetime64('2000-01-01T00','h') # you can still supply a timezone, but you get a deprecation warning >>> np.datetime64('2000-01-01T00Z') DeprecationWarning: parsing timezone aware datetimes is deprecated; this will raise an error in the future numpy.datetime64('2000-01-01T00','h') | ||||
* | STY: Giant whitespace cleanup. | Charles Harris | 2013-08-18 | 1 | -1/+1 |
| | | | | Now is as good a time as any with open PR's at a low. | ||||
* | DOC: Add a section documenting 1.6/1.7 datetime64 differences | Mark Wiebe | 2012-05-01 | 1 | -0/+127 |
| | |||||
* | DOC: label datetime support as experimental. Closes #2072. | Ralf Gommers | 2012-03-30 | 1 | -0/+3 |
| | |||||
* | DOC: datetime: Update the docs to reflect busday_count change | Mark Wiebe | 2011-07-19 | 1 | -2/+1 |
| | |||||
* | DOC: datetime: hyperlink busday_count and is_busday functions in datetime doc | Mark Wiebe | 2011-07-19 | 1 | -2/+2 |
| | |||||
* | DOC: datetime: Add additional tutorial information. | Steve R. Hastings | 2011-07-19 | 1 | -27/+95 |
| | |||||
* | DOC: fix build issues (with latex or newest sphinx) | Pauli Virtanen | 2011-07-15 | 1 | -11/+7 |
| | |||||
* | DOC: datetime: Split the date/time units into two separate tables | Mark Wiebe | 2011-07-01 | 1 | -7/+24 |
| | |||||
* | DOC: datetime: Updates based on Chuck's feedback | Mark Wiebe | 2011-07-01 | 1 | -6/+16 |
| | |||||
* | DOC: datetime: Start a draft of introductory datetime documentation | Mark Wiebe | 2011-07-01 | 1 | -0/+261 |