From a9a53ed10bf5e480c7f68a8bdbd0324c5500d748 Mon Sep 17 00:00:00 2001 From: Stefan Lehmann Date: Fri, 27 Jun 2025 21:20:11 +0200 Subject: [PATCH 1/2] Add wheel package --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ad7ebfe..a3b938d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -31,7 +31,7 @@ jobs: - name: Install package (with dependencies) run: | python -m pip install --upgrade pip - python -m pip install flake8 pytest coverage coveralls pytest-cov setuptools + python -m pip install flake8 pytest coverage coveralls pytest-cov setuptools wheel - name: Build adslib run: | python setup.py build From c9a8cc597676270204d2f3ae9ae1e226f958ccaf Mon Sep 17 00:00:00 2001 From: Stefan Lehmann Date: Fri, 27 Jun 2025 21:23:28 +0200 Subject: [PATCH 2/2] Use pip install -e . instead of setup.py develop --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3b938d7..c4d419ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: python setup.py build - name: Install package run: | - python setup.py develop + pip install -e . - name: Test with pytest run: | pytest -v --cov pyads