gitcad 0.9.2__tar.gz → 0.9.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.
- {gitcad-0.9.2 → gitcad-0.9.3}/PKG-INFO +4 -4
- {gitcad-0.9.2 → gitcad-0.9.3}/pyproject.toml +4 -4
- {gitcad-0.9.2 → gitcad-0.9.3}/.gitignore +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/README.md +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/bench/__init__.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/bench/corpus.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/bench/scorecard.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/bridge.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/convert.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/explore.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/fasteners.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/init.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/lots.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/mcp/__init__.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/mcp/server.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/merge3.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/pcba.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/release.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/render.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/requirements.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/review.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/viewer/__init__.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/viewer/boardsvg.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/viewer/page.py +0 -0
- {gitcad-0.9.2 → gitcad-0.9.3}/src/gitcad/viewer/server.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: gitcad
|
|
3
|
-
Version: 0.9.
|
|
3
|
+
Version: 0.9.3
|
|
4
4
|
Summary: Headless, git-native B-rep CAD (metapackage: core, mechanical, and electrical)
|
|
5
5
|
Project-URL: Homepage, https://gitcad.xyz
|
|
6
6
|
Project-URL: Repository, https://github.com/gitcad-xyz/gitcad
|
|
@@ -18,9 +18,9 @@ Classifier: Topic :: Multimedia :: Graphics :: 3D Modeling
|
|
|
18
18
|
Classifier: Topic :: Scientific/Engineering
|
|
19
19
|
Classifier: Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)
|
|
20
20
|
Requires-Python: >=3.10
|
|
21
|
-
Requires-Dist: gitcad-core==0.9.
|
|
22
|
-
Requires-Dist: gitcad-ecad==0.9.
|
|
23
|
-
Requires-Dist: gitcad-mech==0.9.
|
|
21
|
+
Requires-Dist: gitcad-core==0.9.3
|
|
22
|
+
Requires-Dist: gitcad-ecad==0.9.3
|
|
23
|
+
Requires-Dist: gitcad-mech==0.9.3
|
|
24
24
|
Requires-Dist: mcp>=1.0
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "gitcad"
|
|
7
|
-
version = "0.9.
|
|
7
|
+
version = "0.9.3"
|
|
8
8
|
description = "Headless, git-native B-rep CAD (metapackage: core, mechanical, and electrical)"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
@@ -26,9 +26,9 @@ classifiers = [
|
|
|
26
26
|
# compiled kernel (forgekernel_rs) is likewise a default dep of gitcad-mech on
|
|
27
27
|
# mainstream architectures — no extra needed for either.
|
|
28
28
|
dependencies = [
|
|
29
|
-
"gitcad-core==0.9.
|
|
30
|
-
"gitcad-mech==0.9.
|
|
31
|
-
"gitcad-ecad==0.9.
|
|
29
|
+
"gitcad-core==0.9.3",
|
|
30
|
+
"gitcad-mech==0.9.3",
|
|
31
|
+
"gitcad-ecad==0.9.3",
|
|
32
32
|
"mcp>=1.0",
|
|
33
33
|
]
|
|
34
34
|
|
|
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
|