Skip to content

Commit 137ac45

Browse files
authored
Update docs and CI for py 3.13 support (meta-pytorch#1354)
* Update docs and CI for py 3.13 support * exclude mac and windows builds as theres no torch support yet
1 parent b255542 commit 137ac45

5 files changed

Lines changed: 25 additions & 10 deletions

File tree

.github/workflows/_build_test_upload.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
- "3.10"
6868
- "3.11"
6969
- "3.12"
70+
- "3.13"
7071
- pure
7172
exclude:
7273
- os: windows-latest
@@ -227,6 +228,7 @@ jobs:
227228
- "3.10"
228229
- "3.11"
229230
- "3.12"
231+
- "3.13"
230232
steps:
231233
- name: Checkout Source Repository
232234
uses: actions/checkout@v3

.github/workflows/nodes_ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ jobs:
2929
- "3.10"
3030
- "3.11"
3131
- "3.12"
32+
- "3.13"
33+
exclude:
34+
- os: macos-latest
35+
python-version: "3.13"
36+
- os: windows-latest
37+
python-version: "3.13"
3238
steps:
3339
- name: Get PyTorch Channel
3440
shell: bash

.github/workflows/stateful_dataloader_ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ jobs:
2929
- "3.10"
3030
- "3.11"
3131
- "3.12"
32+
- "3.13"
33+
exclude:
34+
- os: macos-latest
35+
python-version: "3.13"
36+
- os: windows-latest
37+
python-version: "3.13"
3238
steps:
3339
- name: Get PyTorch Channel
3440
shell: bash

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -41,16 +41,16 @@ examples
4141

4242
The following is the corresponding `torchdata` versions and supported Python versions.
4343

44-
| `torch` | `torchdata` | `python` |
45-
| -------------------- | ------------------ | ----------------- |
46-
| `master` / `nightly` | `main` / `nightly` | `>=3.9`, `<=3.12` |
47-
| `2.5.0` | `0.9.0` | `>=3.9`, `<=3.12` |
48-
| `2.4.0` | `0.8.0` | `>=3.8`, `<=3.12` |
49-
| `2.0.0` | `0.6.0` | `>=3.8`, `<=3.11` |
50-
| `1.13.1` | `0.5.1` | `>=3.7`, `<=3.10` |
51-
| `1.12.1` | `0.4.1` | `>=3.7`, `<=3.10` |
52-
| `1.12.0` | `0.4.0` | `>=3.7`, `<=3.10` |
53-
| `1.11.0` | `0.3.0` | `>=3.7`, `<=3.10` |
44+
| `torch` | `torchdata` | `python` |
45+
| -------------------- | ------------------ | --------------------------------------- |
46+
| `master` / `nightly` | `main` / `nightly` | `>=3.9`, `<=3.12` (`3.13` experimental) |
47+
| `2.5.0` | `0.9.0` | `>=3.9`, `<=3.12` |
48+
| `2.4.0` | `0.8.0` | `>=3.8`, `<=3.12` |
49+
| `2.0.0` | `0.6.0` | `>=3.8`, `<=3.11` |
50+
| `1.13.1` | `0.5.1` | `>=3.7`, `<=3.10` |
51+
| `1.12.1` | `0.4.1` | `>=3.7`, `<=3.10` |
52+
| `1.12.0` | `0.4.0` | `>=3.7`, `<=3.10` |
53+
| `1.11.0` | `0.3.0` | `>=3.7`, `<=3.10` |
5454

5555
### Local pip or conda
5656

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ def remove_extension(pattern):
125125
"Programming Language :: Python :: 3.10",
126126
"Programming Language :: Python :: 3.11",
127127
"Programming Language :: Python :: 3.12",
128+
"Programming Language :: Python :: 3.13",
128129
"Programming Language :: Python :: Implementation :: CPython",
129130
"Topic :: Scientific/Engineering :: Artificial Intelligence",
130131
],

0 commit comments

Comments
 (0)