Skip to content

Commit

Permalink
fix v1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mjun0812 committed Oct 15, 2024
1 parent 40eea30 commit c416a48
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 6 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,16 @@ jobs:
strategy:
fail-fast: false
matrix:
python: ["3.10", "3.11"]
python: ["3.10", "3.11", "3.12"]
torch: ["2.1.2", "2.2.1", "2.3.1", "2.4.1"]
cuda: ["11.8.0", "12.1.1", "12.2.2", "12.4.0"]
include:
exclude:
- python: "3.12"
torch: "2.4.1"

torch: "2.1.2"
- python: "3.12"
torch: "2.2.1"
- python: "3.12"
torch: "2.3.1"
steps:
- name: Maximize build space
run: |
Expand All @@ -58,7 +61,7 @@ jobs:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- uses: Jimver/cuda-toolkit@v0.2.14
- uses: Jimver/cuda-toolkit@master
id: cuda-toolkit
with:
cuda: ${{ matrix.cuda }}
Expand Down
2 changes: 1 addition & 1 deletion torch_cpp/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .src import * # noqa: F401, F403

__version__ = "1.1.2"
__version__ = "1.1.3"

0 comments on commit c416a48

Please sign in to comment.