Skip to content

Commit 74e1f51

Browse files
authored
0.0.2 release (#171)
1 parent e774663 commit 74e1f51

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/wheel.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
strategy:
6060
fail-fast: false
6161
matrix:
62-
python-version: ['3.9']
62+
python-version: ['3.9', '3.10', '3.11', '3.12']
6363
ffmpeg-version-for-tests: ['4.4.2', '5.1.2', '6.1.1', '7.0.1']
6464
if: ${{ always() }}
6565
needs: build
@@ -79,7 +79,7 @@ jobs:
7979
run: python -m pip install --upgrade pip
8080
- name: Install PyTorch
8181
run: |
82-
python -m pip install --pre torch --index-url https://download.pytorch.org/whl/nightly/cpu
82+
python -m pip install torch --index-url https://download.pytorch.org/whl/cpu
8383
- name: Install torchcodec from the wheel
8484
run: |
8585
wheel_path=`find pytorch/torchcodec/dist -type f -name "*.whl"`
@@ -102,9 +102,10 @@ jobs:
102102
103103
- name: Install test dependencies
104104
run: |
105-
python -m pip install --pre torchvision --index-url https://download.pytorch.org/whl/nightly/cpu
105+
python -m pip install torchvision --index-url https://download.pytorch.org/whl/cpu
106106
# Ideally we would find a way to get those dependencies from pyproject.toml
107107
python -m pip install numpy pytest pillow
108+
python -c "import torch; print(f'{torch.__version__ = }')"
108109
109110
- name: Delete the src/ folder just for fun
110111
run: |

src/torchcodec/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
from . import decoders # noqa
88

9-
__version__ = "0.0.2.dev"
9+
__version__ = "0.0.2"

0 commit comments

Comments
 (0)