Skip to content

Commit 9bb5181

Browse files
ci: remove python subdirectory
1 parent 5a5e4d1 commit 9bb5181

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ jobs:
3030
- name: Build wheels
3131
uses: pypa/[email protected]
3232
with:
33-
package-dir: ./python
3433
output-dir: ./wheelhouse
3534
# to supply options, put them in 'env', like:
3635
env:

.github/workflows/tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,18 +22,16 @@ jobs:
2222
uses: actions/setup-python@v2
2323
with:
2424
python-version: ${{ matrix.python-version }}
25-
package-dir: ./python
2625

2726
- uses: actions/checkout@v2
2827

2928
- name: Install dependencies
3029
run: |
31-
cd python
3230
python -m pip install --upgrade pip
3331
python -m pip install pytest numpy scipy setuptools wheel
3432
3533
- name: Compile
36-
run: cd python && python setup.py develop
34+
run: python setup.py develop
3735

3836
- name: Test with pytest
39-
run: python -m pytest -v -x python/automated_test.py
37+
run: python -m pytest -v -x automated_test.py

0 commit comments

Comments
 (0)