diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d9bbbaf..d8c9603 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,6 @@ jobs: with: submodules: false coverage: codecov - toxdeps: tox-pypi-filter - posargs: -n auto libraries: | apt: - libopenjp2-7 @@ -37,8 +35,6 @@ jobs: with: submodules: false coverage: codecov - toxdeps: tox-pypi-filter - posargs: -n auto libraries: | apt: - libopenjp2-7 @@ -48,16 +44,15 @@ jobs: - macos: py38 - windows: py39 online: - needs: [core] + needs: [test] uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main with: - default_python: '3.8' submodules: false coverage: codecov - toxdeps: tox-pypi-filter libraries: | apt: - libopenjp2-7 + envs: | - linux: py39-online - linux: build_docs publish: diff --git a/.gitignore b/.gitignore index 59293b7..c6ac0ca 100644 --- a/.gitignore +++ b/.gitignore @@ -135,3 +135,4 @@ dmypy.json # Verison file is created at install, not to be commited. version.py docs/api/ +.DS_Store diff --git a/tox.ini b/tox.ini index b483cd6..2e31e2c 100644 --- a/tox.ini +++ b/tox.ini @@ -36,7 +36,7 @@ extras = docs commands = pip freeze --all --no-input - sphinx-build -j auto --color -W --keep-going -b html -d _build/.doctrees . _build/html {posargs} + sphinx-build -j auto --color -W --keep-going -b html -d _build/.doctrees . _build/html python -c 'import pathlib; print("Documentation available under file://\{0\}".format(pathlib.Path(r"{toxinidir}") / "docs" / "_build" / "index.html"))' [testenv:codestyle]