From 2706d8ae4bcaee93769288edb53db749233ffeb8 Mon Sep 17 00:00:00 2001 From: Nathan Goldbaum Date: Thu, 8 Aug 2024 12:54:06 -0600 Subject: [PATCH 1/2] add workflow dispatch to CI --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 354fd221..100297dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: branches: - main pull_request: + workflow_dispatch: jobs: test: From a85c1cd55ef09d74848a0a1f75955b6ebfc1f222 Mon Sep 17 00:00:00 2001 From: Nathan Goldbaum Date: Thu, 8 Aug 2024 12:56:43 -0600 Subject: [PATCH 2/2] don't install nightlies --- .github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 100297dc..286290c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,10 +19,7 @@ jobs: python-version: "3.10" - name: Install build and test dependencies run: | - python -m pip install -U pip build pytest unyt wheel meson ninja meson-python patchelf - pip uninstall -y numpy - pip install -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy - pip install --no-deps -i https://pypi.anaconda.org/scientific-python-nightly-wheels/simple pandas + python -m pip install -U pip build pytest unyt wheel meson ninja meson-python patchelf pandas numpy - name: Install asciidtype working-directory: asciidtype run: |