From 477223d14ec4e95d09a27f82fc95a46dbb1894d5 Mon Sep 17 00:00:00 2001 From: Dylan Gaines Date: Thu, 16 Oct 2025 16:45:52 -0400 Subject: [PATCH 1/4] PyTables dependency <=3.9.2 needed for python3.9, PsychoPy doesn't like 3.9.2 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 92b55f30..0e3d3a18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -55,7 +55,7 @@ dependencies = [ "tqdm==4.62.2", "rich==13.9.4", "reportlab==4.2.0", - "tables==3.10.1", + "tables==3.9.1", "pyWinhook==1.6.2;python_version=='3.9' and platform_system=='Windows'", "WxPython==4.2.1;platform_system!='Linux'", ] From 88d59e6d10d7d9329e2ba7d9b7ee1c6948f953fc Mon Sep 17 00:00:00 2001 From: Dylan Gaines Date: Thu, 16 Oct 2025 18:59:22 -0400 Subject: [PATCH 2/4] Fixed typo in push-to-test-pypi workflow --- .github/workflows/publish_to_test_pypi.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_to_test_pypi.yml b/.github/workflows/publish_to_test_pypi.yml index 752b46ec..f6d5e347 100644 --- a/.github/workflows/publish_to_test_pypi.yml +++ b/.github/workflows/publish_to_test_pypi.yml @@ -20,7 +20,7 @@ jobs: python-version: "3.9" - name: update pip & install custom dependencies run: | - spython -m pip install --upgrade pip + python -m pip install --upgrade pip brew update brew uninstall cmake sh scripts/shell/m2chip_install.sh @@ -59,4 +59,4 @@ jobs: uses: pypa/gh-action-pypi-publish@release/v1 with: skip-existing: true - repository-url: https://test.pypi.org/legacy/ \ No newline at end of file + repository-url: https://test.pypi.org/legacy/ From 8d5fc64fceba60aac83388d6fe52ada1ddd73fa8 Mon Sep 17 00:00:00 2001 From: Dylan Gaines Date: Thu, 16 Oct 2025 19:15:57 -0400 Subject: [PATCH 3/4] Update macos version in workflow --- .github/workflows/publish_to_test_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_to_test_pypi.yml b/.github/workflows/publish_to_test_pypi.yml index f6d5e347..9ab3a690 100644 --- a/.github/workflows/publish_to_test_pypi.yml +++ b/.github/workflows/publish_to_test_pypi.yml @@ -8,7 +8,7 @@ on: jobs: build: name: Build distribution 📦 - runs-on: macos-latest + runs-on: macos-14 steps: - uses: actions/checkout@v4 From 9759d9dac46407e35e38a2bc2242ca3d69fb95aa Mon Sep 17 00:00:00 2001 From: Dylan Gaines Date: Thu, 16 Oct 2025 19:32:29 -0400 Subject: [PATCH 4/4] Updated macos version in push-to-prod workflow --- .github/workflows/publish_to_pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish_to_pypi.yml b/.github/workflows/publish_to_pypi.yml index 691bd50b..a2b37132 100644 --- a/.github/workflows/publish_to_pypi.yml +++ b/.github/workflows/publish_to_pypi.yml @@ -8,7 +8,7 @@ on: jobs: build: name: Build distribution 📦 - runs-on: macos-latest + runs-on: macos-14 steps: - uses: actions/checkout@v4