Skip to content

Commit 7c5b299

Browse files
committed
Merge remote-tracking branch 'upstream/main' into to_latex-doc
2 parents fd7c291 + de4eaf8 commit 7c5b299

File tree

82 files changed

+806
-466
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+806
-466
lines changed

.github/actions/build_pandas/action.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,6 @@ runs:
2222
fi
2323
shell: bash -el {0}
2424

25-
- name: Uninstall nomkl
26-
run: |
27-
if conda list nomkl | grep nomkl 1>/dev/null; then
28-
conda remove nomkl -y
29-
fi
30-
shell: bash -el {0}
31-
3225
- name: Build Pandas
3326
run: |
3427
if [[ ${{ inputs.editable }} == "true" ]]; then

.github/actions/setup-conda/action.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ runs:
99
- name: Install ${{ inputs.environment-file }}
1010
uses: mamba-org/setup-micromamba@v1
1111
with:
12-
# Pinning to avoid 2.0 failures
13-
micromamba-version: '1.5.10-0'
1412
environment-file: ${{ inputs.environment-file }}
1513
environment-name: test
1614
condarc-file: ci/.condarc

.github/workflows/unit-tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ jobs:
8686
TEST_ARGS: ${{ matrix.test_args || '' }}
8787
PYTEST_WORKERS: 'auto'
8888
PYTEST_TARGET: ${{ matrix.pytest_target || 'pandas' }}
89-
NPY_PROMOTION_STATE: ${{ matrix.env_file == 'actions-311-numpydev.yaml' && 'weak' || 'legacy' }}
9089
# Clipboard tests
9190
QT_QPA_PLATFORM: offscreen
9291
REMOVE_PYARROW: ${{ matrix.name == 'Future infer strings (without pyarrow)' && '1' || '0' }}

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ jobs:
156156
run: echo "sdist_name=$(cd ./dist && ls -d */)" >> "$GITHUB_ENV"
157157

158158
- name: Build wheels
159-
uses: pypa/[email protected].0
159+
uses: pypa/[email protected].3
160160
with:
161161
package-dir: ./dist/${{ startsWith(matrix.buildplat[1], 'macosx') && env.sdist_name || needs.build_sdist.outputs.sdist_file }}
162162
env:

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ minimum_pre_commit_version: 2.15.0
22
exclude: ^LICENSES/|\.(html|csv|svg)$
33
# reserve "manual" for relatively slow hooks which we still want to run in CI
44
default_stages: [
5-
commit,
6-
merge-commit,
7-
push,
5+
pre-commit,
6+
pre-merge-commit,
7+
pre-push,
88
prepare-commit-msg,
99
commit-msg,
1010
post-checkout,

ci/code_checks.sh

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
8585
-i "pandas.Timestamp.resolution PR02" \
8686
-i "pandas.Timestamp.tzinfo GL08" \
8787
-i "pandas.Timestamp.year GL08" \
88-
-i "pandas.api.types.is_integer PR01,SA01" \
89-
-i "pandas.api.types.is_iterator PR07,SA01" \
9088
-i "pandas.api.types.is_re_compilable PR07,SA01" \
9189
-i "pandas.api.types.pandas_dtype PR07,RT03,SA01" \
9290
-i "pandas.arrays.ArrowExtensionArray PR07,SA01" \
@@ -97,7 +95,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
9795
-i "pandas.arrays.NumpyExtensionArray SA01" \
9896
-i "pandas.arrays.SparseArray PR07,SA01" \
9997
-i "pandas.arrays.TimedeltaArray PR07,SA01" \
100-
-i "pandas.core.groupby.DataFrameGroupBy.__iter__ RT03,SA01" \
10198
-i "pandas.core.groupby.DataFrameGroupBy.boxplot PR07,RT03,SA01" \
10299
-i "pandas.core.groupby.DataFrameGroupBy.get_group RT03,SA01" \
103100
-i "pandas.core.groupby.DataFrameGroupBy.groups SA01" \
@@ -106,7 +103,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
106103
-i "pandas.core.groupby.DataFrameGroupBy.nunique SA01" \
107104
-i "pandas.core.groupby.DataFrameGroupBy.plot PR02" \
108105
-i "pandas.core.groupby.DataFrameGroupBy.sem SA01" \
109-
-i "pandas.core.groupby.SeriesGroupBy.__iter__ RT03,SA01" \
110106
-i "pandas.core.groupby.SeriesGroupBy.get_group RT03,SA01" \
111107
-i "pandas.core.groupby.SeriesGroupBy.groups SA01" \
112108
-i "pandas.core.groupby.SeriesGroupBy.indices SA01" \
@@ -115,7 +111,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
115111
-i "pandas.core.groupby.SeriesGroupBy.nth PR02" \
116112
-i "pandas.core.groupby.SeriesGroupBy.plot PR02" \
117113
-i "pandas.core.groupby.SeriesGroupBy.sem SA01" \
118-
-i "pandas.core.resample.Resampler.__iter__ RT03,SA01" \
119114
-i "pandas.core.resample.Resampler.get_group RT03,SA01" \
120115
-i "pandas.core.resample.Resampler.groups SA01" \
121116
-i "pandas.core.resample.Resampler.indices SA01" \
@@ -126,11 +121,9 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
126121
-i "pandas.core.resample.Resampler.quantile PR01,PR07" \
127122
-i "pandas.core.resample.Resampler.sem SA01" \
128123
-i "pandas.core.resample.Resampler.std SA01" \
129-
-i "pandas.core.resample.Resampler.sum SA01" \
130124
-i "pandas.core.resample.Resampler.transform PR01,RT03,SA01" \
131125
-i "pandas.core.resample.Resampler.var SA01" \
132126
-i "pandas.errors.AttributeConflictWarning SA01" \
133-
-i "pandas.errors.CSSWarning SA01" \
134127
-i "pandas.errors.ChainedAssignmentError SA01" \
135128
-i "pandas.errors.DataError SA01" \
136129
-i "pandas.errors.DuplicateLabelError SA01" \
@@ -139,22 +132,17 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
139132
-i "pandas.errors.NullFrequencyError SA01" \
140133
-i "pandas.errors.NumExprClobberingError SA01" \
141134
-i "pandas.errors.NumbaUtilError SA01" \
142-
-i "pandas.errors.OptionError SA01" \
143135
-i "pandas.errors.OutOfBoundsTimedelta SA01" \
144136
-i "pandas.errors.PerformanceWarning SA01" \
145137
-i "pandas.errors.PossibleDataLossError SA01" \
146-
-i "pandas.errors.PossiblePrecisionLoss SA01" \
147138
-i "pandas.errors.UndefinedVariableError PR01,SA01" \
148139
-i "pandas.errors.UnsortedIndexError SA01" \
149-
-i "pandas.errors.UnsupportedFunctionCall SA01" \
150140
-i "pandas.errors.ValueLabelTypeMismatch SA01" \
151141
-i "pandas.infer_freq SA01" \
152142
-i "pandas.io.json.build_table_schema PR07,RT03,SA01" \
153143
-i "pandas.io.stata.StataWriter.write_file SA01" \
154-
-i "pandas.json_normalize RT03,SA01" \
155144
-i "pandas.plotting.andrews_curves RT03,SA01" \
156145
-i "pandas.plotting.scatter_matrix PR07,SA01" \
157-
-i "pandas.set_eng_float_format RT03,SA01" \
158146
-i "pandas.tseries.offsets.BDay PR02,SA01" \
159147
-i "pandas.tseries.offsets.BQuarterBegin.is_on_offset GL08" \
160148
-i "pandas.tseries.offsets.BQuarterBegin.n GL08" \
@@ -300,7 +288,6 @@ if [[ -z "$CHECK" || "$CHECK" == "docstrings" ]]; then
300288
-i "pandas.tseries.offsets.Second.is_on_offset GL08" \
301289
-i "pandas.tseries.offsets.Second.n GL08" \
302290
-i "pandas.tseries.offsets.Second.normalize GL08" \
303-
-i "pandas.tseries.offsets.SemiMonthBegin SA01" \
304291
-i "pandas.tseries.offsets.SemiMonthBegin.day_of_month GL08" \
305292
-i "pandas.tseries.offsets.SemiMonthBegin.is_on_offset GL08" \
306293
-i "pandas.tseries.offsets.SemiMonthBegin.n GL08" \

ci/deps/actions-310-minimum_versions.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ dependencies:
77
- python=3.10
88

99
# build dependencies
10-
- versioneer[toml]
10+
- versioneer
1111
- cython>=0.29.33
12-
- meson[ninja]=1.2.1
12+
- meson=1.2.1
1313
- meson-python=0.13.1
1414

1515
# test dependencies

ci/deps/actions-310.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ dependencies:
55
- python=3.10
66

77
# build dependencies
8-
- versioneer[toml]
8+
- versioneer
99
- cython>=0.29.33
10-
- meson[ninja]=1.2.1
10+
- meson=1.2.1
1111
- meson-python=0.13.1
1212

1313
# test dependencies
@@ -52,7 +52,7 @@ dependencies:
5252
- scipy>=1.10.0
5353
- sqlalchemy>=2.0.0
5454
- tabulate>=0.9.0
55-
- xarray>=2022.12.0
55+
- xarray>=2022.12.0, <=2024.9.0
5656
- xlrd>=2.0.1
5757
- xlsxwriter>=3.0.5
5858
- zstandard>=0.19.0

ci/deps/actions-311-downstream_compat.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ dependencies:
66
- python=3.11
77

88
# build dependencies
9-
- versioneer[toml]
9+
- versioneer
1010
- cython>=0.29.33
11-
- meson[ninja]=1.2.1
11+
- meson=1.2.1
1212
- meson-python=0.13.1
1313

1414
# test dependencies
@@ -53,7 +53,7 @@ dependencies:
5353
- scipy>=1.10.0
5454
- sqlalchemy>=2.0.0
5555
- tabulate>=0.9.0
56-
- xarray>=2022.12.0
56+
- xarray>=2022.12.0, <=2024.9.0
5757
- xlrd>=2.0.1
5858
- xlsxwriter>=3.0.5
5959
- zstandard>=0.19.0

ci/deps/actions-311-numpydev.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ dependencies:
55
- python=3.11
66

77
# build dependencies
8-
- versioneer[toml]
9-
- meson[ninja]=1.2.1
8+
- versioneer
9+
- meson=1.2.1
1010
- meson-python=0.13.1
1111
- cython>=0.29.33
1212

0 commit comments

Comments
 (0)