From bc27fdcf5161a4e3b72fe1a0b89dff7cbb833f56 Mon Sep 17 00:00:00 2001 From: Jeroen van der Heijden Date: Tue, 17 Sep 2024 11:17:49 +0200 Subject: [PATCH] Upd CI --- .github/workflows/ci.yml | 8 ++++++-- setup.py | 2 -- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfb9045..7772de0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,12 +10,16 @@ on: jobs: build: runs-on: ubuntu-latest + strategy: + max-parallel: 4 + matrix: + python-version: ["3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v4 - - name: Set up Python 3.12 + - name: Set up Python $ uses: actions/setup-python@v5 with: - python-version: 3.12 + python-version: $ - name: Install dependencies run: | python -m pip install --upgrade pip diff --git a/setup.py b/setup.py index 8879397..b0fdf80 100644 --- a/setup.py +++ b/setup.py @@ -46,8 +46,6 @@ # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. - 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.11',