-
-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Strategies should not rely on pandas dtype aliases (#620) * add test for strategy with pandas.DatetimeTZDtype using a datetime.tzinfo * avoid coercing with string alias in strategies * support timedelta in data synthesis strats (#621) * fix multiindex error reporting (#622) * Pin pylint (#629) * bump pre-commit pylint version * pin pylint * remove setuptools pins * setup.py setuptools * add back setuptools dep * update ci build * update build * update nox build * update nox build * exclude np.float128 type registration in MacM1 (#624) * exclude np.float128 type registration in MacM1 * replace windows/mac m1 checks with float128 check * fix numpy_pandas_coercible bug dealing with single element (#626) * fix numpy_pandas_coercible bug dealing with single element * add test * remove empty case * update pylint (#630) * unpin pylint, remove setuptools constraint * bump cache * install simpleeval in noxfile * re-pin pylint * fix lint * nox uses setuptools < 58.0.0 Co-authored-by: Jean-Francois Zinque <[email protected]>
- Loading branch information
1 parent
f0ddcbf
commit f4dbaca
Showing
21 changed files
with
221 additions
and
101 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
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
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
"""Global variables relating to OS.""" | ||
|
||
import numpy as np | ||
|
||
# Windows and Mac M1 don't support floats of this precision: | ||
# https://github.com/pandera-dev/pandera/issues/623 | ||
FLOAT_128_AVAILABLE = hasattr(np, "float128") |
Oops, something went wrong.