Skip to content

Commit a395be3

Browse files
committed
See if I have corrected PyPI packaging.
1 parent 20c1c9c commit a395be3

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

.github/workflows/ubuntu.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,7 @@ jobs:
2020
python-version: ${{ matrix.python-version }}
2121
- name: Install dependencies
2222
run: |
23-
# Install the latest xdis release tarball from GitHub Releases (asset named xdis_36-*.tar.gz)
24-
XDIS_URL=$(curl -s https://api.github.com/repos/rocky/python-xdis/releases/latest \
25-
| python -c "import sys,json; j=json.load(sys.stdin); assets=j.get('assets',[]); print(next((a.get('browser_download_url') for a in assets if a.get('name','').startswith('xdis_36-') and a.get('name','').endswith('.tar.gz')), ''))")
26-
if [ -z "$XDIS_URL" ]; then
27-
echo "ERROR: no xdis_36-*.tar.gz asset found on the latest release"; exit 1
28-
fi
29-
python -m pip install "$XDIS_URL"
3023
pip install -e .
31-
# pip install click spark-parser xdis
3224
pip install -r requirements-dev.txt
3325
- name: Test this package
3426
run: |

0 commit comments

Comments
 (0)