-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
29 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
name: Build SDist | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
|
@@ -27,17 +27,17 @@ jobs: | |
name: Build Wheels on ${{ matrix.os }} | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
fail-fast: true | ||
matrix: | ||
os: [ ubuntu-latest, macOS-latest] | ||
os: [ubuntu-latest, windows-latest, macOS-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Install dependencies | ||
run: | | ||
python -m pip install --upgrade pip | ||
pip install cibuildwheel twine nanobind | ||
python -m pip install cibuildwheel twine nanobind | ||
- uses: pypa/[email protected] | ||
env: | ||
|
@@ -52,7 +52,7 @@ jobs: | |
|
||
publish_wheels: | ||
name: Publish Wheels to PyPI | ||
needs: [ build_wheels, build_sdist ] | ||
needs: [build_wheels, build_sdist] | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: pypi | ||
|
@@ -73,3 +73,4 @@ jobs: | |
# password: ${{ secrets.PYPI_TOKEN }} | ||
password: ${{ secrets.TEST_PYPI_TOKEN }} | ||
repository-url: https://test.pypi.org/legacy/ | ||
verbose: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,11 @@ | ||
[project] | ||
name = "pyraymesh" | ||
version = "0.1.0" | ||
version = "0.1.1" | ||
description = "A library for ray-mesh intersections on triangular meshes" | ||
readme = "README.md" | ||
requires-python = ">=3.10" | ||
license = { text = "MIT" } | ||
authors = [ | ||
{ name = "Dag Wästberg", email = "[email protected]" } | ||
] | ||
authors = [{ name = "Dag Wästberg", email = "[email protected]" }] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -17,9 +15,7 @@ classifiers = [ | |
] | ||
|
||
|
||
dependencies = [ | ||
"numpy", | ||
] | ||
dependencies = ["numpy"] | ||
|
||
|
||
[project.urls] | ||
|
@@ -35,8 +31,4 @@ build.verbose = true | |
sdist.exclude = ["*.whl", "*.egg-info", "build", "dist"] | ||
|
||
[tool.uv] | ||
dev-dependencies = [ | ||
"nanobind>=2.1.0", | ||
"pytest>=8.1.0", | ||
"trimesh>=4.4.1", | ||
] | ||
dev-dependencies = ["nanobind>=2.1.0", "pytest>=8.1.0", "trimesh>=4.4.1"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
from .Mesh import Mesh | ||
|
||
__version__ = "0.1.1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters