Skip to content

Commit 672341c

Browse files
authored
Merge branch 'main' into faster_masked_transpose
2 parents bc989c1 + 103d3b2 commit 672341c

File tree

122 files changed

+1156
-2003
lines changed

Some content is hidden

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

122 files changed

+1156
-2003
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
image: ubuntu-2004:2022.04.1
77
resource_class: arm.large
88
environment:
9-
ENV_FILE: ci/deps/circle-38-arm64.yaml
9+
ENV_FILE: ci/deps/circle-39-arm64.yaml
1010
PYTEST_WORKERS: auto
1111
PATTERN: "not single_cpu and not slow and not network and not clipboard and not arm_slow and not db"
1212
PYTEST_TARGET: "pandas"

.github/actions/run-tests/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
shell: bash -el {0}
88

99
- name: Publish test results
10-
uses: actions/upload-artifact@v2
10+
uses: actions/upload-artifact@v3
1111
with:
1212
name: Test results
1313
path: test-data.xml
@@ -19,7 +19,7 @@ runs:
1919
if: failure()
2020

2121
- name: Upload coverage to Codecov
22-
uses: codecov/codecov-action@v2
22+
uses: codecov/codecov-action@v3
2323
with:
2424
flags: unittests
2525
name: codecov-pandas

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
using: composite
1414
steps:
1515
- name: Install ${{ inputs.environment-file }}
16-
uses: mamba-org/provision-with-micromamba@v12
16+
uses: mamba-org/provision-with-micromamba@v15
1717
with:
1818
environment-file: ${{ inputs.environment-file }}
1919
environment-name: ${{ inputs.environment-name }}

.github/workflows/32-bit-linux.yml

-58
This file was deleted.

.github/workflows/code-checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ jobs:
179179
id: setup_python
180180
uses: actions/setup-python@v4
181181
with:
182-
python-version: '3.8'
182+
python-version: '3.10'
183183
cache: 'pip'
184184
cache-dependency-path: 'requirements-dev.txt'
185185

.github/workflows/macos-windows.yml

-60
This file was deleted.

.github/workflows/package-checks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
id: setup_python
3939
uses: actions/setup-python@v4
4040
with:
41-
python-version: '3.8'
41+
python-version: '3.10'
4242

4343
- name: Install required dependencies
4444
run: |

.github/workflows/python-dev.yml

-95
This file was deleted.

.github/workflows/sdist.yml

+1-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
strategy:
3030
fail-fast: false
3131
matrix:
32-
python-version: ["3.8", "3.9", "3.10", "3.11"]
32+
python-version: ["3.9", "3.10", "3.11"]
3333
concurrency:
3434
# https://github.community/t/concurrecy-not-work-for-push/183068/7
3535
group: ${{ github.event_name == 'push' && github.run_number || github.ref }}-${{matrix.python-version}}-sdist
@@ -80,8 +80,6 @@ jobs:
8080
- name: Force oldest supported NumPy
8181
run: |
8282
case "${{matrix.python-version}}" in
83-
3.8)
84-
pip install numpy==1.21.6 ;;
8583
3.9)
8684
pip install numpy==1.21.6 ;;
8785
3.10)

0 commit comments

Comments
 (0)