Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "rtxpy"
version = "0.0.9"
version = "0.1.0"
description = "Ray tracing using CUDA accessible from Python"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion rtxpy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
from .rtx import (
RTX,

Check failure on line 2 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:2:5: F401 `.rtx.RTX` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `RTX as RTX`
has_cupy,

Check failure on line 3 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:3:5: F401 `.rtx.has_cupy` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `has_cupy as has_cupy`
get_device_count,

Check failure on line 4 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:4:5: F401 `.rtx.get_device_count` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `get_device_count as get_device_count`
get_device_properties,

Check failure on line 5 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:5:5: F401 `.rtx.get_device_properties` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `get_device_properties as get_device_properties`
list_devices,

Check failure on line 6 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:6:5: F401 `.rtx.list_devices` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `list_devices as list_devices`
get_current_device,

Check failure on line 7 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:7:5: F401 `.rtx.get_current_device` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `get_current_device as get_current_device`
get_capabilities,

Check failure on line 8 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:8:5: F401 `.rtx.get_capabilities` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `get_capabilities as get_capabilities`
)
from .mesh import (
triangulate_terrain,

Check failure on line 11 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:11:5: F401 `.mesh.triangulate_terrain` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `triangulate_terrain as triangulate_terrain`
voxelate_terrain,

Check failure on line 12 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (F401)

rtxpy/__init__.py:12:5: F401 `.mesh.voxelate_terrain` imported but unused; consider removing, adding to `__all__`, or using a redundant alias help: Use an explicit re-export: `voxelate_terrain as voxelate_terrain`
write_stl,
load_glb,
load_mesh,
Expand All @@ -24,7 +24,7 @@
from .analysis import viewshed, hillshade, render, flyover, view
from .engine import explore

Check failure on line 25 in rtxpy/__init__.py

View workflow job for this annotation

GitHub Actions / Lint & Import Check

ruff (I001)

rtxpy/__init__.py:1:1: I001 Import block is un-sorted or un-formatted help: Organize imports

__version__ = "0.0.9"
__version__ = "0.1.0"

# Optional convenience — network helpers with lazy dependency checks
try:
Expand Down