From a621da583652dd8c000de79d3af5b598fd75b394 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Thu, 18 Jul 2024 10:51:43 -0700 Subject: [PATCH 1/2] CI: adding workflow dispatch --- .github/workflows/ci_workflows.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci_workflows.yml b/.github/workflows/ci_workflows.yml index 179eb53..5eb01b0 100644 --- a/.github/workflows/ci_workflows.yml +++ b/.github/workflows/ci_workflows.yml @@ -6,6 +6,7 @@ on: schedule: # Run every Sunday at 06:53 UTC - cron: 53 6 * * 0 + workflow_dispatch: concurrency: group: ${{ github.workflow }}-${{ github.ref }} From 51b2b20645e607d6f470d1ea623e2e975e99dcdf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brigitta=20Sip=C5=91cz?= Date: Mon, 22 Jul 2024 15:45:58 -0700 Subject: [PATCH 2/2] CI: try excluding pytables from ARM OSX testing --- setup.cfg | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 68f7426..91d35d4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -36,11 +36,12 @@ install_requires = pytest>=4.6 numpy +# tables limitation is until 3.9.3 is out as that supports ARM OSX. [options.extras_require] test = astropy pandas - tables + tables;platform_machine!='arm64' [options.entry_points] pytest11 =