Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up python
uses: actions/setup-python@v6.2.0
with:
python-version: '3.13'
python-version: '3.14'

- name: Install pip dependencies
run: pip install build
Expand Down
13 changes: 6 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: "3.11"
python-version: "3.14"
activate-environment: true

- name: Install dependencies
Expand All @@ -35,7 +35,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.12", "3.13", "3.14"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
Expand All @@ -60,7 +60,6 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: qubvel-org/segmentation_models.pytorch
if: matrix.os == 'macos-latest' && matrix.python-version == '3.12'
Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Any reason why this was here? I think we should upload coverage metrics for all tests, even if some lines of code are Python-version specific.

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

idk 😄


test_logits_match:
runs-on: ubuntu-latest
Expand All @@ -69,7 +68,7 @@ jobs:
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
python-version: "3.14"
activate-environment: true
- name: Install dependencies
run: uv pip install -r requirements/required.txt -r requirements/test.txt
Expand All @@ -85,7 +84,7 @@ jobs:
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
python-version: "3.14"
activate-environment: true
- name: Install dependencies
run: uv pip install -r requirements/required.txt -r requirements/test.txt
Expand All @@ -101,7 +100,7 @@ jobs:
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
python-version: "3.14"
activate-environment: true
- name: Install dependencies
run: uv pip install -r requirements/required.txt -r requirements/test.txt
Expand All @@ -117,7 +116,7 @@ jobs:
- name: Set up Python
uses: astral-sh/setup-uv@v7
with:
python-version: "3.10"
python-version: "3.14"
activate-environment: true
- name: Install dependencies
run: uv pip install -r requirements/required.txt -r requirements/test.txt
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3.12"
python: "3.14"

# Build documentation in the "docs/" directory with Sphinx
sphinx:
Expand Down
Loading