Skip to content

Commit e3b0cd2

Browse files
committed
add comment, remove sdist ci
1 parent 94c1de0 commit e3b0cd2

File tree

2 files changed

+1
-47
lines changed

2 files changed

+1
-47
lines changed

.github/workflows/ci.yml

-47
Original file line numberDiff line numberDiff line change
@@ -157,50 +157,3 @@ jobs:
157157
run: |
158158
source activate pandas-dev
159159
pytest pandas/tests/frame/methods --array-manager
160-
161-
build-sdist:
162-
name: Build from source distribution
163-
runs-on: ubuntu-latest
164-
steps:
165-
- name: Update for build environment
166-
run: |
167-
sudo apt-get update
168-
sudo apt-get install -y build-essential
169-
sudo apt-get clean
170-
- name: Setting conda path
171-
run: echo "$CONDA/bin" >> $GITHUB_PATH
172-
- name: Update conda
173-
run: |
174-
conda config --set quiet true --set always_yes true
175-
conda update -n base -c defaults conda
176-
conda list
177-
- name: Checkout pandas
178-
uses: actions/checkout@v2
179-
- name: Fetch git tags
180-
run: |
181-
git remote -v
182-
git fetch --all --tags
183-
- name: Setup conda environment for build
184-
run: |
185-
conda create --name build-sdist python=3.8 numpy
186-
- name: Build the sdist
187-
run: |
188-
source activate build-sdist
189-
conda list
190-
rm -rf dist
191-
git clean -xfd
192-
python setup.py clean --quiet
193-
python setup.py sdist --formats=gztar --quiet
194-
- name: Setup conda environment for test
195-
run: |
196-
conda create --name pip-test python=3.8 pytest pytest-xdist pytest-mock hypothesis
197-
- name: Install pandas and test
198-
run: |
199-
pwd
200-
cd ..
201-
pwd
202-
source activate pip-test
203-
conda list
204-
pip install pandas/dist/*.gz
205-
conda list
206-
python3 -c "import pandas; pandas.test(extra_args=['-m not clipboard', '--skip-slow', '--skip-network', '--skip-db', '-n=2'])"

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ global-exclude .DS_Store
3737
global-exclude .git*
3838
global-exclude \#*
3939

40+
# GH 39321
4041
prune pandas/tests/io/parser/data
4142

4243
include versioneer.py

0 commit comments

Comments
 (0)