diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3d179b8..47d1a89 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,6 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} changelog: false - - name: Publish package distributions to PyPI uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/README.md b/README.md index 5184ee1..e439f51 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ Follow this step, if you are already using Vanilla's [graphdeco-inria 3D Gaussia in your project and you want to replace forward/backward kernels with deepsense.ai open-source kernels. -In your environment, simply install: +Make sure CUDA compiler is installed in your environment and simply install: ```bash pip install ds-splat ``` @@ -212,4 +212,4 @@ this regard. Higher PSNR is better. 📥 [Download](https://drive.google.com/file/d/1MADQzb6onTV6JBJQqTx8H9bN6It4Vcdj/view?usp=sharing) more benchmark plots from GDrive. -![deepsense/gsplat PSNR to Vanilla. Bicycle Scene.](assets/psnr_to_vanilla/bicycle_1280x720_psnr.png) \ No newline at end of file +![deepsense/gsplat PSNR to Vanilla. Bicycle Scene.](assets/psnr_to_vanilla/bicycle_1280x720_psnr.png) diff --git a/pyproject.toml b/pyproject.toml index 45efecc..b97ee66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ allow_zero_version = true no_git_verify = false tag_format = "v{version}" version_variables = ["setup.py:__version__"] -build_command = "pip install build && python -m build" +build_command = "pip install build && python -m build --sdist" [tool.semantic_release.branches.main] match = "(main|master)" diff --git a/setup.py b/setup.py index 1833f26..ede8110 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import find_packages, setup from torch.utils.cpp_extension import BuildExtension, CUDAExtension -__version__ = "0.0.0" +__version__ = "0.0.1" def get_cuda_extension(): extra_compile_args = {"cxx": ["-O3"], "nvcc": ["-O3", "--use_fast_math"]}