Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 7 additions & 8 deletions .github/workflows/main_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
architecture: x64

- name: Install poetry
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
cache: 'poetry'

- name: Install dependencies
Expand All @@ -52,7 +52,7 @@ jobs:
shell: bash
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11', "3.12", "3.13" ]
python-version: ['3.10', '3.11', "3.12", "3.13", "3.14"]
platform: [ubuntu-24.04, windows-2022]

runs-on: ${{ matrix.platform }}
Expand Down Expand Up @@ -88,16 +88,15 @@ jobs:
poetry run pytest -v -s tests/unit/test_connection.py
poetry run pytest -v -s tests/unit/test_entry_points.py

# ARM/X86_64 issues on macos
pytest-macos13:
pytest-macos15:
name: Std Test on Python ${{ matrix.python-version }} (${{ matrix.platform}})
defaults:
run:
shell: bash
strategy:
matrix:
python-version: [ '3.9', '3.10', '3.11' ]
platform: [macos-13]
python-version: [ '3.12', '3.13', '3.14' ]
platform: [macos-15]

runs-on: ${{ matrix.platform }}
steps:
Expand Down Expand Up @@ -138,7 +137,7 @@ jobs:
shell: bash
strategy:
matrix:
python-version: [ "3.12", "3.13.0-beta.2" ]
python-version: [ "3.12", "3.13", "3.14" ]
platform: [macos-14]

runs-on: ${{ matrix.platform }}
Expand Down