nc-gcode-interpreter 0.1.2__tar.gz → 0.1.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/.github/workflows/build-and-release.yml +40 -41
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/Cargo.lock +1 -1
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/Cargo.toml +1 -1
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/PKG-INFO +1 -1
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/pyproject.toml +1 -1
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/.gitignore +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/CONTRIBUTING.md +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/Development.md +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/Example.MPF +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/LICENSE +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/README.md +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/TODO.md +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/arrays.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/arrays.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/basic_math.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/basic_math.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/custom_vars.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/custom_vars.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/defaults.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/defaults.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/for_loop.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/for_loop.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/if_statement.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/if_statement.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/increment.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/increment.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/loop.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/loop.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/multiple_m_codes.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/multiple_m_codes.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/simple.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/simple.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/trans.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/trans.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/variables.csv +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/examples/variables.mpf +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/ggroups/generate_modal_ggroups.py +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/ggroups/generate_pest.py +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/ggroups/ggroups.json +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/ggroups/ggroups.pest +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/ggroups/modal_groups.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/python/example/minimal.py +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/python/nc_gcode_interpreter/__init__.py +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/python/tests/test_expected_output.py +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/rustfmt.toml +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/errors.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/grammar.pest +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/interpret_rules.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/interpreter.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/lib.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/main.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/modal_groups.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/state.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/src/types.rs +0 -0
- {nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/uv.lock +0 -0
{nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/.github/workflows/build-and-release.yml
RENAMED
|
@@ -143,45 +143,45 @@ jobs:
|
|
|
143
143
|
name: wheels-macos-${{ matrix.platform.target }}
|
|
144
144
|
path: dist
|
|
145
145
|
|
|
146
|
-
emscripten:
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
146
|
+
# emscripten:
|
|
147
|
+
# runs-on: ${{ matrix.platform.runner }}
|
|
148
|
+
# strategy:
|
|
149
|
+
# matrix:
|
|
150
|
+
# platform:
|
|
151
|
+
# - runner: ubuntu-latest
|
|
152
|
+
# target: wasm32-unknown-emscripten
|
|
153
|
+
# steps:
|
|
154
|
+
# - uses: actions/checkout@v4
|
|
155
|
+
# - uses: actions/setup-python@v5
|
|
156
|
+
# with:
|
|
157
|
+
# python-version: 3.12
|
|
158
|
+
# - run: pip install pyodide-build
|
|
159
|
+
# - name: Get Emscripten and Python version info
|
|
160
|
+
# shell: bash
|
|
161
|
+
# run: |
|
|
162
|
+
# echo EMSCRIPTEN_VERSION=$(pyodide config get emscripten_version) >> $GITHUB_ENV
|
|
163
|
+
# echo PYTHON_VERSION=$(pyodide config get python_version | cut -d '.' -f 1-2) >> $GITHUB_ENV
|
|
164
|
+
# pip uninstall -y pyodide-build
|
|
165
|
+
# - uses: mymindstorm/setup-emsdk@v12
|
|
166
|
+
# with:
|
|
167
|
+
# version: ${{ env.EMSCRIPTEN_VERSION }}
|
|
168
|
+
# actions-cache-folder: emsdk-cache
|
|
169
|
+
# - uses: actions/setup-python@v5
|
|
170
|
+
# with:
|
|
171
|
+
# python-version: ${{ env.PYTHON_VERSION }}
|
|
172
|
+
# - run: pip install pyodide-build
|
|
173
|
+
# - name: Build wheels
|
|
174
|
+
# uses: PyO3/maturin-action@v1
|
|
175
|
+
# with:
|
|
176
|
+
# target: ${{ matrix.platform.target }}
|
|
177
|
+
# args: --release --out dist -i ${{ env.PYTHON_VERSION }} -b bin
|
|
178
|
+
# sccache: 'true'
|
|
179
|
+
# rust-toolchain: nightly
|
|
180
|
+
# - name: Upload wheels
|
|
181
|
+
# uses: actions/upload-artifact@v4
|
|
182
|
+
# with:
|
|
183
|
+
# name: wheels-wasm
|
|
184
|
+
# path: dist
|
|
185
185
|
|
|
186
186
|
sdist:
|
|
187
187
|
runs-on: ubuntu-latest
|
|
@@ -204,7 +204,7 @@ jobs:
|
|
|
204
204
|
environment: release
|
|
205
205
|
if: ${{ startsWith(github.ref, 'refs/tags/') || github.event_name == 'workflow_dispatch' }}
|
|
206
206
|
# needs: [linux, musllinux, windows, macos, emscripten, sdist]
|
|
207
|
-
needs: [linux, windows, macos,
|
|
207
|
+
needs: [linux, windows, macos, sdist]
|
|
208
208
|
permissions:
|
|
209
209
|
# Use to sign the release artifacts
|
|
210
210
|
id-token: write
|
|
@@ -252,7 +252,6 @@ jobs:
|
|
|
252
252
|
uses: softprops/action-gh-release@v2
|
|
253
253
|
with:
|
|
254
254
|
files: |
|
|
255
|
-
wheels-wasm/*.whl
|
|
256
255
|
wheels-sdist/*.tar.gz
|
|
257
256
|
wheels-windows-*/*.whl
|
|
258
257
|
wheels-windows-*/*.data/scripts/${{ env.PROJECT_NAME }}_*_windows_*.exe
|
|
@@ -4,7 +4,7 @@ build-backend = "maturin"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nc-gcode-interpreter"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "A interpreter for NC (Numerical Control) code"
|
|
9
9
|
authors = [{ name = "Your Name", email = "your.email@example.com" }]
|
|
10
10
|
requires-python = ">=3.12"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/python/nc_gcode_interpreter/__init__.py
RENAMED
|
File without changes
|
{nc_gcode_interpreter-0.1.2 → nc_gcode_interpreter-0.1.3}/python/tests/test_expected_output.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|