summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2022-02-12 15:51:36 -0500
committerJason R. Coombs <jaraco@jaraco.com>2022-02-12 15:51:36 -0500
commit357292252c188c7b9288e81dc68038cd43ca52e6 (patch)
tree91a1115c887f8f6b790673c4e25c814db554bbaa /.github
parentf7834144b49f28011e99c48845dbe18a91420bba (diff)
downloadpython-setuptools-git-357292252c188c7b9288e81dc68038cd43ca52e6.tar.gz
Remove invocation of bootstrap script, no longer needed. Fixes #3100.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci-sage.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci-sage.yml b/.github/workflows/ci-sage.yml
index b802a58c..425681d7 100644
--- a/.github/workflows/ci-sage.yml
+++ b/.github/workflows/ci-sage.yml
@@ -75,7 +75,7 @@ jobs:
python3 -m pip install build
- name: Run make dist, prepare upstream artifact
run: |
- (cd build/pkgs/${{ env.SPKG }}/src && python3 -m bootstrap && python3 -m build --sdist) \
+ (cd build/pkgs/${{ env.SPKG }}/src && python3 -m build --sdist) \
&& mkdir -p upstream && cp build/pkgs/${{ env.SPKG }}/src/dist/*.tar.gz upstream/${{ env.SPKG }}-git.tar.gz \
&& echo "sage-package create ${{ env.SPKG }} --version git --tarball ${{ env.SPKG }}-git.tar.gz --type=standard" > upstream/update-pkgs.sh \
&& if [ -n "${{ env.REMOVE_PATCHES }}" ]; then echo "(cd ../build/pkgs/${{ env.SPKG }}/patches && rm -f ${{ env.REMOVE_PATCHES }}; :)" >> upstream/update-pkgs.sh; fi \