From 1dfd1ab7823c1c47980ce3ae9647f0dbf6b4a050 Mon Sep 17 00:00:00 2001 From: Allen Downey Date: Mon, 29 Jul 2024 09:07:45 -0400 Subject: [PATCH] Don't test on macos --- .github/workflows/tests.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fe6ca6d..c0e2298 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -5,7 +5,6 @@ on: branches: [v1] pull_request: schedule: - # Run every Sunday - cron: "0 0 1 * *" workflow_dispatch: @@ -16,7 +15,8 @@ jobs: strategy: matrix: # don't run on windows-latest; it can't handle Unicode - os: [ubuntu-latest, macos-latest] + # don't run on macos-latest; it can't install pytables + os: [ubuntu-latest] python-version: ['3.10'] steps: @@ -35,4 +35,3 @@ jobs: - name: Run tests run: | make tests -