Skip to content

Commit dd00d5e

Browse files
committed
WIP
1 parent eee6995 commit dd00d5e

File tree

6 files changed

+12
-9
lines changed

6 files changed

+12
-9
lines changed

.github/workflows/asv-bot.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
- created
77
push:
88
branches:
9-
- main
10-
- 1.4.x
9+
- mainskip
10+
- 1.4.xskip
1111

1212
env:
1313
ENV_FILE: environment.yml
@@ -37,7 +37,9 @@ jobs:
3737
with:
3838
fetch-depth: 0
3939

40-
- name: Set up pandas
40+
# Although asv sets up its own env, deps are still needed
41+
# during discovery process
42+
- name: Set up Conda
4143
uses: ./.github/actions/setup
4244
with:
4345
environment-file: ${{ env.ENV_FILE }}

.github/workflows/code-checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
with:
5353
fetch-depth: 0
5454

55-
- name: Set up pandas
55+
- name: Set up Conda
5656
uses: ./.github/actions/setup
5757

5858
- name: Build Pandas
@@ -100,7 +100,7 @@ jobs:
100100
with:
101101
fetch-depth: 0
102102

103-
- name: Set up pandas
103+
- name: Set up Conda
104104
uses: ./.github/actions/setup
105105

106106
- name: Build Pandas

.github/workflows/datamanager.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
with:
4848
fetch-depth: 0
4949

50-
- name: Set up pandas
50+
- name: Set up Conda
5151
uses: ./.github/actions/setup
5252

5353
- name: Build pandas

.github/workflows/docbuild-and-upload.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
with:
3333
fetch-depth: 0
3434

35-
- name: Set up pandas
35+
- name: Set up Conda
3636
uses: ./.github/actions/setup
3737

3838
- name: Build pandas

.github/workflows/posix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
- name: Extra installs
9999
run: sudo apt-get update && sudo apt-get install -y libc6-dev-i386 ${{ env.EXTRA_APT }}
100100

101-
- name: Set up pandas
101+
- name: Set up Conda
102102
uses: ./.github/actions/setup
103103
with:
104104
environment-file: ${{ env.ENV_FILE }}

.github/workflows/sdist.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,8 @@ jobs:
5353
pip list
5454
python setup.py sdist --formats=gztar
5555
56-
- uses: ./.github/actions/setup
56+
- name: Set up Conda
57+
uses: ./.github/actions/setup
5758
with:
5859
activate-environment: pandas-sdist
5960
python-version: ${{ matrix.python-version }}

0 commit comments

Comments
 (0)