diff --git a/.github/workflows/python_ci_linux.yml b/.github/workflows/python_ci_linux.yml index ce74567..0da3b09 100644 --- a/.github/workflows/python_ci_linux.yml +++ b/.github/workflows/python_ci_linux.yml @@ -67,7 +67,7 @@ jobs: - name: Install dependencies 🔧 run: | python -m pip install --upgrade pip setuptools wheel - python -m pip install --upgrade coveralls coverage_pyver_pragma + python -m pip install --upgrade "coveralls>=3.0.0" coverage_pyver_pragma - name: "Download Coverage 🪂" uses: actions/download-artifact@v2 @@ -93,7 +93,7 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} run: | - coveralls + coveralls --service=github Deploy: needs: tests diff --git a/.readthedocs.yml b/.readthedocs.yml index 8ba9cb3..ce3f99b 100644 --- a/.readthedocs.yml +++ b/.readthedocs.yml @@ -11,3 +11,5 @@ python: install: - requirements: requirements.txt - requirements: doc-source/requirements.txt + - method: pip + path: . diff --git a/tox.ini b/tox.ini index 92236a3..1e8de7c 100644 --- a/tox.ini +++ b/tox.ini @@ -140,6 +140,7 @@ exclude_lines = if TYPE_CHECKING: if typing.TYPE_CHECKING: if __name__ == .__main__.: + \.\.\. [check-wheel-contents] ignore = W002