Commit 9981ac59 authored by Lei Wang's avatar Lei Wang Committed by LeiWang1999
Browse files

[Release] Bump version to 0.1.3 (#264)

* Bump version to 0.1.3

* Refactor Docker script to streamline installation commands

- Removed the installation of the Python environment and CMake from the Docker run command, simplifying the execution process.
- Updated the command to focus on pip installation and running tox for testing across multiple Python versions.
parent 8c94de32
0.1.2.post1
\ No newline at end of file
0.1.3
\ No newline at end of file
......@@ -6,4 +6,4 @@ install_pip="python3.8 -m pip install --upgrade pip && python3.8 -m pip install
tox_command="python3.8 -m tox -e py38,py39,py310,py311,py312"
docker run --rm -v $(pwd):/tilelang ${IMAGE} /bin/bash -c "$apt_command && $install_python_env && $install_cmake && $install_pip && $tox_command"
docker run --rm -v $(pwd):/tilelang ${IMAGE} /bin/bash -c "$install_pip && $tox_command"
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment