-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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: Add 3.12 builds #56174
Merged
Merged
CI: Add 3.12 builds #56174
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
f27d956
Add 3.12 builds
phofl e609166
Fix
phofl 69a523b
Fix
phofl c7fb666
Fix
phofl 02ed106
Fix
phofl 3ce3f6b
Fix tests
phofl f58ad20
Fix
phofl f2f71d1
Update ci/deps/actions-312.yaml
phofl 83f42bc
Merge branch 'main' into 3_12_build
phofl 37db207
Disable dev
phofl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
name: pandas-dev-312 | ||
channels: | ||
- conda-forge | ||
dependencies: | ||
- python=3.12 | ||
|
||
# build dependencies | ||
- versioneer[toml] | ||
- cython>=0.29.33 | ||
- meson[ninja]=1.2.1 | ||
- meson-python=0.13.1 | ||
|
||
# test dependencies | ||
- pytest>=7.3.2 | ||
- pytest-cov | ||
- pytest-xdist>=2.2.0 | ||
- pytest-localserver>=0.7.1 | ||
- pytest-qt>=4.2.0 | ||
- boto3 | ||
|
||
# required dependencies | ||
- python-dateutil | ||
- numpy<2 | ||
- pytz | ||
|
||
# optional dependencies | ||
- beautifulsoup4>=4.11.2 | ||
- blosc>=1.21.3 | ||
- bottleneck>=1.3.6 | ||
- fastparquet>=2022.12.0 | ||
- fsspec>=2022.11.0 | ||
- html5lib>=1.1 | ||
- hypothesis>=6.46.1 | ||
- gcsfs>=2022.11.0 | ||
- jinja2>=3.1.2 | ||
- lxml>=4.9.2 | ||
- matplotlib>=3.6.3 | ||
# - numba>=0.56.4 | ||
- numexpr>=2.8.4 | ||
- odfpy>=1.4.1 | ||
- qtpy>=2.3.0 | ||
- pyqt>=5.15.9 | ||
- openpyxl>=3.1.0 | ||
- psycopg2>=2.9.6 | ||
- pyarrow>=10.0.1 | ||
- pymysql>=1.0.2 | ||
- pyreadstat>=1.2.0 | ||
# - pytables>=3.8.0 | ||
# - python-calamine>=0.1.6 | ||
- pyxlsb>=1.0.10 | ||
- s3fs>=2022.11.0 | ||
- scipy>=1.10.0 | ||
- sqlalchemy>=2.0.0 | ||
- tabulate>=0.9.0 | ||
- xarray>=2022.12.0 | ||
- xlrd>=2.0.1 | ||
- xlsxwriter>=3.0.5 | ||
- zstandard>=0.19.0 | ||
|
||
- pip: | ||
- adbc-driver-postgresql>=0.8.0 | ||
- adbc-driver-sqlite>=0.8.0 | ||
- tzdata>=2022.7 |
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 |
---|---|---|
|
@@ -287,7 +287,9 @@ def test_read_excel_parse_dates(self, ext): | |
|
||
date_parser = lambda x: datetime.strptime(x, "%m/%d/%Y") | ||
with tm.assert_produces_warning( | ||
FutureWarning, match="use 'date_format' instead" | ||
FutureWarning, | ||
match="use 'date_format' instead", | ||
raise_on_extra_warnings=False, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's the extra warning here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. same as above |
||
): | ||
res = pd.read_excel( | ||
pth, | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's the extra warning here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a DeprecationWarning that originates in the excel libraries