grid-simulate 0.2.0__tar.gz → 0.2.2__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.
- grid_simulate-0.2.2/.github/workflows/publish.yml +59 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/Cargo.lock +1 -1
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/Cargo.toml +1 -1
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/PKG-INFO +1 -1
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/pyproject.toml +1 -1
- grid_simulate-0.2.0/.github/workflows/publish.yml +0 -48
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.gitignore +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/.gitignore +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/GRiD.iml +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/misc.xml +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/modules.xml +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/vcs.xml +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/README.md +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/algorithms.py +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/best_model.pt +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/compare.py +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/dataset.py +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/model.py +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/train.py +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/python/test_bridge.py +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/lib.rs +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/main.rs +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/node.rs +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/pebble.rs +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/rank.rs +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/reconstruct.rs +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/rigidity.rs +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/simulation.rs +0 -0
- {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/traversal.rs +0 -0
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
release:
|
|
5
|
+
types: [published]
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
id-token: write
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
build:
|
|
13
|
+
strategy:
|
|
14
|
+
fail-fast: false
|
|
15
|
+
matrix:
|
|
16
|
+
os: [ubuntu-latest, windows-latest, macos-latest]
|
|
17
|
+
|
|
18
|
+
runs-on: ${{ matrix.os }}
|
|
19
|
+
|
|
20
|
+
steps:
|
|
21
|
+
- uses: actions/checkout@v5
|
|
22
|
+
|
|
23
|
+
- uses: actions/setup-python@v5
|
|
24
|
+
with:
|
|
25
|
+
python-version: "3.13"
|
|
26
|
+
|
|
27
|
+
- name: Install maturin
|
|
28
|
+
run: pip install maturin==1.14.1
|
|
29
|
+
|
|
30
|
+
- name: Build wheels
|
|
31
|
+
env:
|
|
32
|
+
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
|
|
33
|
+
run: |
|
|
34
|
+
maturin build --release --sdist --interpreter python3.11 python3.12 python3.13
|
|
35
|
+
|
|
36
|
+
- uses: actions/upload-artifact@v5
|
|
37
|
+
with:
|
|
38
|
+
name: wheels-${{ matrix.os }}
|
|
39
|
+
path: target/wheels/*
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
publish:
|
|
43
|
+
needs: build
|
|
44
|
+
runs-on: ubuntu-latest
|
|
45
|
+
|
|
46
|
+
permissions:
|
|
47
|
+
id-token: write
|
|
48
|
+
|
|
49
|
+
environment:
|
|
50
|
+
name: pypi
|
|
51
|
+
|
|
52
|
+
steps:
|
|
53
|
+
- uses: actions/download-artifact@v5
|
|
54
|
+
with:
|
|
55
|
+
pattern: wheels-*
|
|
56
|
+
merge-multiple: true
|
|
57
|
+
path: dist
|
|
58
|
+
|
|
59
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
name: Publish to PyPI
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
release:
|
|
5
|
-
types: [published]
|
|
6
|
-
|
|
7
|
-
permissions:
|
|
8
|
-
contents: read
|
|
9
|
-
id-token: write
|
|
10
|
-
|
|
11
|
-
jobs:
|
|
12
|
-
build:
|
|
13
|
-
runs-on: ubuntu-latest
|
|
14
|
-
|
|
15
|
-
steps:
|
|
16
|
-
- uses: actions/checkout@v4
|
|
17
|
-
|
|
18
|
-
- name: Build wheels with maturin
|
|
19
|
-
uses: PyO3/maturin-action@v1
|
|
20
|
-
with:
|
|
21
|
-
command: build
|
|
22
|
-
args: --release --sdist
|
|
23
|
-
|
|
24
|
-
- name: Upload artifacts
|
|
25
|
-
uses: actions/upload-artifact@v4
|
|
26
|
-
with:
|
|
27
|
-
name: dist
|
|
28
|
-
path: target/wheels/
|
|
29
|
-
|
|
30
|
-
publish:
|
|
31
|
-
needs: build
|
|
32
|
-
runs-on: ubuntu-latest
|
|
33
|
-
|
|
34
|
-
permissions:
|
|
35
|
-
id-token: write
|
|
36
|
-
|
|
37
|
-
environment:
|
|
38
|
-
name: pypi
|
|
39
|
-
|
|
40
|
-
steps:
|
|
41
|
-
- name: Download artifacts
|
|
42
|
-
uses: actions/download-artifact@v4
|
|
43
|
-
with:
|
|
44
|
-
name: dist
|
|
45
|
-
path: dist/
|
|
46
|
-
|
|
47
|
-
- name: Publish to PyPI
|
|
48
|
-
uses: pypa/gh-action-pypi-publish@release/v1
|
|
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
|