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

CI: failing builds on master #29053

Closed
jreback opened this issue Oct 17, 2019 · 3 comments
Closed

CI: failing builds on master #29053

jreback opened this issue Oct 17, 2019 · 3 comments
Labels
CI Continuous Integration
Milestone

Comments

@jreback
Copy link
Contributor

jreback commented Oct 17, 2019

https://travis-ci.org/pandas-dev/pandas/builds/599134469

looks like some issues on 3.8, 3.6 allowed failure builds (i know has been failing a while)

should address these before merging other changes.

cc @pandas-dev/pandas-core

@jreback jreback added the CI Continuous Integration label Oct 17, 2019
@jreback jreback added this to the 1.0 milestone Oct 17, 2019
@jbrockmendel
Copy link
Member

Looks like a new difference between numpy 1.17 vs 1.18:

s = pd.Series(
            pd.to_datetime(["NaT", "2000-1-2", "NaT", "2000-1-1", "NaT", "2000-1-3"])
        )

>>> np.minimum.accumulate(s.values)  # numpy 1.17
array([                          'NaT', '2000-01-02T00:00:00.000000000',
       '2000-01-02T00:00:00.000000000', '2000-01-01T00:00:00.000000000',
       '2000-01-01T00:00:00.000000000', '2000-01-01T00:00:00.000000000'],
      dtype='datetime64[ns]')

>>> np.accumulate.minimum(s.values)  # numpy 1.18
array(['NaT', 'NaT', 'NaT', 'NaT', 'NaT', 'NaT'], dtype='datetime64[ns]')

@jbrockmendel
Copy link
Member

numpy/numpy#14717

@jbrockmendel
Copy link
Member

closed by #29057

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
CI Continuous Integration
Projects
None yet
Development

No branches or pull requests

2 participants