From 02e8f91ddb38a3548e5fc072c97a4695e9541827 Mon Sep 17 00:00:00 2001 From: Barret Schloerke Date: Mon, 7 Oct 2024 12:57:19 -0400 Subject: [PATCH] Reapply "try using pip for now. Revert commit later!" This reverts commit 5e7a61c616b39e7ce870936169bb7588da779b6b. --- .github/py-shiny/setup/action.yaml | 4 ++-- .github/workflows/build-docs.yaml | 2 +- .github/workflows/deploy-tests.yaml | 2 +- .github/workflows/pytest.yaml | 8 ++++---- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/py-shiny/setup/action.yaml b/.github/py-shiny/setup/action.yaml index 812a186f0..1435e27b8 100644 --- a/.github/py-shiny/setup/action.yaml +++ b/.github/py-shiny/setup/action.yaml @@ -33,12 +33,12 @@ runs: - name: Install dependencies shell: bash run: | - make ci-install-deps + make install-deps - name: Install shell: bash run: | - make ci-install-wheel + make install-wheel - name: Pip list shell: bash diff --git a/.github/workflows/build-docs.yaml b/.github/workflows/build-docs.yaml index ab63cdd11..dcd2b3987 100644 --- a/.github/workflows/build-docs.yaml +++ b/.github/workflows/build-docs.yaml @@ -38,7 +38,7 @@ jobs: - name: Install dependencies run: | - make ci-install-docs + make install-docs - name: Run quartodoc run: | diff --git a/.github/workflows/deploy-tests.yaml b/.github/workflows/deploy-tests.yaml index 24fdfa358..76547f56c 100644 --- a/.github/workflows/deploy-tests.yaml +++ b/.github/workflows/deploy-tests.yaml @@ -97,7 +97,7 @@ jobs: - name: Install rsconnect (GitHub) if: ${{ ! matrix.config.pypi_rsconnect }} run: | - make ci-install-rsconnect + make install-rsconnect - name: Test that deployable example apps work timeout-minutes: 5 # ~10s locally diff --git a/.github/workflows/pytest.yaml b/.github/workflows/pytest.yaml index a7cc6633e..510a23d62 100644 --- a/.github/workflows/pytest.yaml +++ b/.github/workflows/pytest.yaml @@ -58,10 +58,10 @@ jobs: run: | make check-format - - name: Verify code can run with mypy (not Windows) - if: steps.install.outcome == 'success' && (success() || failure()) && matrix.os != 'windows-latest' - run: | - make ci-check-mypy-can-run + # - name: Verify code can run with mypy (not Windows) + # if: steps.install.outcome == 'success' && (success() || failure()) && matrix.os != 'windows-latest' + # run: | + # make ci-check-mypy-can-run pypi: name: "Deploy to PyPI"