##// END OF EJS Templates
try to build with python -m build
Matthias Bussonnier -
Show More
@@ -55,9 +55,14 b' jobs:'
55 run: sudo apt-get -yq -o Acquire::Retries=3 --no-install-suggests --no-install-recommends install texlive dvipng
55 run: sudo apt-get -yq -o Acquire::Retries=3 --no-install-suggests --no-install-recommends install texlive dvipng
56 - name: Install and update Python dependencies
56 - name: Install and update Python dependencies
57 run: |
57 run: |
58 python -m pip install --upgrade pip setuptools wheel
58 python -m pip install --upgrade pip setuptools wheel build
59 python -m pip install --upgrade -e .[${{ matrix.deps }}]
59 python -m pip install --upgrade -e .[${{ matrix.deps }}]
60 python -m pip install --upgrade check-manifest pytest-cov
60 python -m pip install --upgrade check-manifest pytest-cov
61 - name: Try building with Python build
62 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
63 run: |
64 python -m build
65 shasum -a 256 dist/*
61 - name: Check manifest
66 - name: Check manifest
62 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
67 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
63 run: check-manifest
68 run: check-manifest
General Comments 0
You need to be logged in to leave comments. Login now