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
4 changes: 2 additions & 2 deletions .github/workflows/build-cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
script: |
set -euo pipefail

export PYTHON_VERSION=3.9
export PYTHON_VERSION=3.10
export GPU_ARCH_TYPE=${{ matrix.gpu-arch-type }}
export GPU_ARCH_VERSION=${{ matrix.gpu-arch-version }}
./.github/scripts/cmake.sh
Expand All @@ -52,7 +52,7 @@ jobs:
script: |
set -euo pipefail

export PYTHON_VERSION=3.9
export PYTHON_VERSION=3.10
export GPU_ARCH_TYPE=cpu
export GPU_ARCH_VERSION=''

Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/prototype-tests-linux-gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runner: ["linux.12xlarge"]
gpu-arch-type: ["cpu"]
include:
- python-version: "3.9"
- python-version: "3.10"
runner: linux.g5.4xlarge.nvidia.gpu
gpu-arch-type: cuda
gpu-arch-version: "12.6"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-schedule.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:

steps:
- name: Set up python
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: "3.10"

- name: Upgrade system packages
run: python -m pip install --upgrade pip setuptools wheel
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
runner: ["linux.12xlarge"]
gpu-arch-type: ["cpu"]
include:
- python-version: 3.9
- python-version: "3.10"
runner: linux.g5.4xlarge.nvidia.gpu
gpu-arch-type: cuda
gpu-arch-version: "12.6"
Expand Down Expand Up @@ -50,7 +49,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
# TODO put back 3.11 (See blame)
# - "3.11"
Expand All @@ -76,7 +74,6 @@ jobs:
strategy:
matrix:
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
Expand Down Expand Up @@ -157,7 +154,7 @@ jobs:
script: |
set -euo pipefail

export PYTHON_VERSION=3.9
export PYTHON_VERSION="3.10"
export GPU_ARCH_TYPE=cpu
export GPU_ARCH_VERSION=''

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ versions.

| `torch` | `torchvision` | Python |
| ------------------ | ------------------ | ------------------- |
| `main` / `nightly` | `main` / `nightly` | `>=3.10`, `<=3.13` |
| `main` / `nightly` | `main` / `nightly` | `>=3.10`, `<=3.14` |
| `2.9` | `0.24` | `>=3.10`, `<=3.14` |
| `2.8` | `0.23` | `>=3.9`, `<=3.13` |
| `2.7` | `0.22` | `>=3.9`, `<=3.13` |
| `2.6` | `0.21` | `>=3.9`, `<=3.12` |
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ def run(self):
"scipy": ["scipy"],
},
ext_modules=extensions,
python_requires=">=3.9",
python_requires=">=3.10",
cmdclass={
"build_ext": BuildExtension.with_options(no_python_abi_suffix=True),
"clean": clean,
Expand Down
Loading