8000 CI: add sdist release workflow by fangchenli · Pull Request #41685 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CI: add sdist release workflow #41685

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

Merged
merged 21 commits into from
Jun 21, 2021
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix step name
  • Loading branch information
fangchenli committed Jun 18, 2021
commit 6b47cab6155644c32f6ae156e555c74abee4e85e
8 changes: 5 additions & 3 deletions .github/workflows/sdist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,11 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel

# GH 39416
pip install numpy

- name: Build Pandas sdist
- name: Build pandas sdist
run: |
pip list
python setup.py sdist --formats=gztar
Expand All @@ -50,12 +52,12 @@ jobs:
activate-environment: pandas-sdist
python-version: ${{ matrix.python-version }}

- name: Install Pandas From sdist
- name: Install pandas from sdist
run: |
conda list
python -m pip install dist/*.gz

- name: Build Version
- name: Import pandas
run: |
cd ..
conda list
Expand Down
0