Skip to content

Commit abc6f73

Browse files
committed
small cleanup
1 parent 8a27cd9 commit abc6f73

2 files changed

Lines changed: 4 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,7 @@ jobs:
5555
- name: Install dependencies
5656
run: python -m pip install wheel build tox
5757

58-
- name: Build sdist
59-
run: python -m build --sdist --outdir dist .
60-
61-
- name: Test build integrity
58+
- name: Test build integrity and build sdist
6259
run: tox -e build
6360

6461
- uses: actions/upload-artifact@v4

tox.ini

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,11 +42,10 @@ commands =
4242
pytest --doctest-modules --pyargs maicos
4343

4444
[testenv:tests-dev]
45-
description = Run test suite against MDAnalysis dev version
45+
description = Run test suite against MAICoS dev version
4646
deps =
4747
-r tests/requirements.txt
48-
MDAnalysis @ git+https://github.com/MDAnalysis/mdanalysis.git\#subdirectory=package
49-
MDAnalysisTests @ git+https://github.com/MDAnalysis/mdanalysis.git\#subdirectory=testsuite
48+
maicos @ git+https://github.com/maicos-devel/maicos.git
5049
commands =
5150
pytest {posargs}
5251

@@ -89,7 +88,7 @@ commands =
8988
twine check dist/*.tar.gz dist/*.whl
9089
check-manifest {toxinidir}
9190
# Workaround using shells since tox does not support wildcards
92-
linux: bash -c "python -m pip install --force-reinstall dist/maicos-*.tar.gz"
91+
linux: bash -c "python -m pip install --force-reinstall dist/scatterkit-*.tar.gz"
9392
linux: bash -c "python -m pip install --force-reinstall dist/maicos-*.whl"
9493
macos: zsh -c "python -m pip install --force-reinstall dist/maicos-*.tar.gz"
9594
macos: zsh -c "python -m pip install --force-reinstall dist/maicos-*.whl"
@@ -101,8 +100,6 @@ description = Building the package documentation.
101100
usedevelop = true
102101
deps = -r docs/requirements.txt
103102
extras = examples
104-
allowlist_externals =
105-
bash
106103
commands =
107104
sphinx-build \
108105
{posargs:-E} \

0 commit comments

Comments
 (0)