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.
Files changed (30) hide show
  1. grid_simulate-0.2.2/.github/workflows/publish.yml +59 -0
  2. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/Cargo.lock +1 -1
  3. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/Cargo.toml +1 -1
  4. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/PKG-INFO +1 -1
  5. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/pyproject.toml +1 -1
  6. grid_simulate-0.2.0/.github/workflows/publish.yml +0 -48
  7. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.gitignore +0 -0
  8. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/.gitignore +0 -0
  9. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/GRiD.iml +0 -0
  10. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/inspectionProfiles/profiles_settings.xml +0 -0
  11. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/misc.xml +0 -0
  12. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/modules.xml +0 -0
  13. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/.idea/vcs.xml +0 -0
  14. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/README.md +0 -0
  15. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/algorithms.py +0 -0
  16. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/best_model.pt +0 -0
  17. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/compare.py +0 -0
  18. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/dataset.py +0 -0
  19. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/model.py +0 -0
  20. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/gnn/train.py +0 -0
  21. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/python/test_bridge.py +0 -0
  22. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/lib.rs +0 -0
  23. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/main.rs +0 -0
  24. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/node.rs +0 -0
  25. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/pebble.rs +0 -0
  26. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/rank.rs +0 -0
  27. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/reconstruct.rs +0 -0
  28. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/rigidity.rs +0 -0
  29. {grid_simulate-0.2.0 → grid_simulate-0.2.2}/src/simulation.rs +0 -0
  30. {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
@@ -25,7 +25,7 @@ checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
25
25
 
26
26
  [[package]]
27
27
  name = "grid"
28
- version = "0.2.0"
28
+ version = "0.2.2"
29
29
  dependencies = [
30
30
  "approx",
31
31
  "ndarray",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "grid"
3
- version = "0.2.0"
3
+ version = "0.2.2"
4
4
  edition = "2021"
5
5
  readme = "README.md"
6
6
 
@@ -1,5 +1,5 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: grid-simulate
3
- Version: 0.2.0
3
+ Version: 0.2.2
4
4
  Summary: Rust + PyO3 simulation library
5
5
  Requires-Python: >=3.8
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "grid-simulate"
7
- version = "0.2.0"
7
+ version = "0.2.2"
8
8
  description = "Rust + PyO3 simulation library"
9
9
  requires-python = ">=3.8"
10
10
 
@@ -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