From 382ca53526ca8d09e00af3524c3c7385b32bb9d6 Mon Sep 17 00:00:00 2001 From: johndoknjas Date: Fri, 10 May 2024 01:36:06 -0700 Subject: [PATCH] Since python <3.10 seems to be fixed for macos now (https://github.com/actions/setup-python/issues/808), re-include python 3.8 & 3.9. --- .github/workflows/run-tests.yml | 5 ----- ideas.txt | 4 ---- 2 files changed, 9 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d231ba6..8750353 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,11 +17,6 @@ jobs: matrix: os: [ubuntu-latest, macos-latest, windows-latest] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - exclude: - - os: macos-latest - python-version: "3.8" - - os: macos-latest - python-version: "3.9" steps: - uses: actions/checkout@v3 diff --git a/ideas.txt b/ideas.txt index 5cad0e1..e144390 100644 --- a/ideas.txt +++ b/ideas.txt @@ -21,10 +21,6 @@ - Also once lintception is updated with allowing the user to specify certain files that should be empty, specify the __init__.py in the hypickle folder. - # https://github.com/actions/setup-python/issues/808 - When python 3.8 and 3.9 reliably work on macos for github runners, remove the exclusion - of them in `run-tests.py`. - # Can include some linters mentioned here in your tests as well (e.g., bandit): https://realpython.com/python-code-quality/