diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ac0ff69..5ace4c5 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -50,7 +50,7 @@ jobs: - python: pypy3.10 platform: ubuntu-latest runs-on: ${{ matrix.platform }} - continue-on-error: ${{ matrix.python == '3.13' }} + continue-on-error: ${{ matrix.python == '3.13' || (matrix.python == '3.8' || matrix.python == '3.9') && matrix.platform == 'macos-latest' }} steps: - uses: actions/checkout@v4 - name: Setup Python diff --git a/pyproject.toml b/pyproject.toml index 32be8d3..95fe48d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,9 @@ classifiers = [ "Programming Language :: Python :: 3 :: Only", ] requires-python = ">=3.8" -dependencies = ["jaraco.text"] +dependencies = [ + "jaraco.text", +] dynamic = ["version"] [project.urls] @@ -26,7 +28,7 @@ Homepage = "https://github.com/jaraco/jaraco.collections" [project.optional-dependencies] testing = [ # upstream - "pytest >= 6, != 8.1.1", + "pytest >= 6, != 8.1.*", "pytest-checkdocs >= 2.4", "pytest-cov", "pytest-mypy",