diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a045c6d6..0d1f361e 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -70,13 +70,14 @@ jobs: # Build and test matrix (parallel execution) build-and-test: - name: Build & Test (${{ matrix.platform }}) + name: Build & Test (${{ matrix.platform }}, py${{ matrix.python-version }}) needs: lint runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: + python-version: ['3.10', '3.13', '3.14'] include: - os: macos-15 platform: macos-arm64 @@ -99,7 +100,8 @@ jobs: - name: Set up Python uses: actions/setup-python@v6 with: - python-version: '3.10' + python-version: ${{ matrix.python-version }} + allow-prereleases: true cache: 'pip' cache-dependency-path: 'pyproject.toml' diff --git a/pyproject.toml b/pyproject.toml index d77eeab2..3203f38f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,6 +27,8 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Database", "Topic :: Scientific/Engineering :: Artificial Intelligence", "Topic :: Software Development :: Libraries :: Python Modules", @@ -161,6 +163,8 @@ build = [ "cp310-*", "cp311-*", "cp312-*", + "cp313-*", + "cp314-*", ] build-frontend = "build" test-requires = ["pytest", "numpy"]