Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Routhleck committed Sep 9, 2024
1 parent 30389bf commit eaa8978
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion ci/linux/gpu/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ requires = [
"pybind11",
"setuptools_scm[toml]>=3.4",
"cmake",
"taichi",
"taichi==1.7.2",
]

build-backend = "setuptools.build_meta"
Expand Down
2 changes: 1 addition & 1 deletion copy_so_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ yum install glibc-devel -y

yum install --disableplugin=fastmirror -y python3-devel.x86_64

pip install taichi
pip install taichi==1.7.2
chmod +x ./copy_so_linux.py
python copy_so_linux.py

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ requires = [
"pybind11",
"setuptools_scm[toml]>=3.4",
"cmake",
"taichi",
"taichi==1.7.2",
]

build-backend = "setuptools.build_meta"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
try:
import taichi as ti

if ti.__version__ == __minimal_taichi_version:
if ti.__version__ < __minimal_taichi_version:
raise ModuleNotFoundError
except ModuleNotFoundError:
taichi_installed = 'taichi' in globals()
Expand Down
2 changes: 1 addition & 1 deletion setup_cuda.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
try:
import taichi as ti

if ti.__version__ == __minimal_taichi_version:
if ti.__version__ < __minimal_taichi_version:
raise ModuleNotFoundError
except ModuleNotFoundError:
taichi_installed = 'taichi' in globals()
Expand Down

0 comments on commit eaa8978

Please sign in to comment.