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
4 changes: 0 additions & 4 deletions python/cpp/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ __pycache__/
*.exp
*.lib

{% if add_vcpkg -%}
# vcpkg
vcpkg/
vcpkg_installed/

{% endif -%}
# Rust
target
target-capi
Expand Down Expand Up @@ -148,9 +146,7 @@ Untitled*.ipynb

# Emscripten SDK (locally installed)
emsdk
{% if add_pyodide -%}
.pyodide_build/
{% endif %}

# Mac
.DS_Store
Expand Down
4 changes: 0 additions & 4 deletions python/cppjswasm/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,10 @@ __pycache__/
*.exp
*.lib

{% if add_vcpkg -%}
# vcpkg
vcpkg/
vcpkg_installed/

{% endif -%}
# Rust
target
target-capi
Expand Down Expand Up @@ -148,9 +146,7 @@ Untitled*.ipynb

# Emscripten SDK (locally installed)
emsdk
{% if add_pyodide -%}
.pyodide_build/
{% endif %}

# Mac
.DS_Store
Expand Down
5 changes: 5 additions & 0 deletions python/js/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ __pycache__/
*.exp
*.lib

# vcpkg
vcpkg/
vcpkg_installed/

# Rust
target
target-capi
Expand Down Expand Up @@ -142,6 +146,7 @@ Untitled*.ipynb

# Emscripten SDK (locally installed)
emsdk
.pyodide_build/

# Mac
.DS_Store
Expand Down
5 changes: 5 additions & 0 deletions python/jupyter/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ __pycache__/
*.exp
*.lib

# vcpkg
vcpkg/
vcpkg_installed/

# Rust
target
target-capi
Expand Down Expand Up @@ -142,6 +146,7 @@ Untitled*.ipynb

# Emscripten SDK (locally installed)
emsdk
.pyodide_build/

# Mac
.DS_Store
Expand Down
5 changes: 5 additions & 0 deletions python/pure/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ __pycache__/
*.exp
*.lib

# vcpkg
vcpkg/
vcpkg_installed/

# Rust
target
target-capi
Expand Down Expand Up @@ -142,6 +146,7 @@ Untitled*.ipynb

# Emscripten SDK (locally installed)
emsdk
.pyodide_build/

# Mac
.DS_Store
Expand Down
6 changes: 4 additions & 2 deletions python/rust/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ __pycache__/
*.exp
*.lib

# vcpkg
vcpkg/
vcpkg_installed/

# Rust
target
target-capi
Expand Down Expand Up @@ -142,9 +146,7 @@ Untitled*.ipynb

# Emscripten SDK (locally installed)
emsdk
{% if add_pyodide -%}
.pyodide_build/
{% endif %}

# Mac
.DS_Store
Expand Down
3 changes: 1 addition & 2 deletions python/rust/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -124,8 +124,7 @@ test-command = "python -m pytest -vvv --pyargs {{ module }}.tests"
test-extras = []
test-requires = ["pytest"]
xbuild-tools = ["cargo", "rustc", "rustup"]
{% endif -%}

{% endif %}
[tool.coverage.run]
branch = true
omit = [
Expand Down
6 changes: 4 additions & 2 deletions python/rustjswasm/.gitignore.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ __pycache__/
*.exp
*.lib

# vcpkg
vcpkg/
vcpkg_installed/

# Rust
target
target-capi
Expand Down Expand Up @@ -142,9 +146,7 @@ Untitled*.ipynb

# Emscripten SDK (locally installed)
emsdk
{% if add_pyodide -%}
.pyodide_build/
{% endif %}

# Mac
.DS_Store
Expand Down
3 changes: 1 addition & 2 deletions python/rustjswasm/pyproject.toml.jinja
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,7 @@ test-command = "python -m pytest -vvv --pyargs {{ module }}.tests"
test-extras = []
test-requires = ["pytest"]
xbuild-tools = ["cargo", "rustc", "rustup"]
{% endif -%}

{% endif %}
[tool.coverage.run]
branch = true
omit = [
Expand Down
Loading