Skip to content

Commit 4b4d6e0

Browse files
committed
More version
1 parent 8fba288 commit 4b4d6e0

File tree

15 files changed

+34
-10
lines changed

15 files changed

+34
-10
lines changed

devtools/subproject.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def _run_pip(self, *args: str, cwd=None):
5050
def install_build_deps(self, *, wheel_path: pathlib.Path):
5151
self._run_pip(
5252
"install",
53+
"--no-index",
5354
"--find-links",
5455
str(wheel_path),
5556
*[str(req) for req in self.build_requires],

subprojects/pyntcore/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ version_file = "ntcore/version.py"
3636

3737
[tool.hatch.build.hooks.meson]
3838

39+
[tool.hatch.build.targets.wheel]
40+
packages = ["ntcore"]
41+
3942

4043
[tool.semiwrap]
4144
update_init = [

subprojects/robotpy-apriltag/pyproject.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ version_file = "robotpy_apriltag/version.py"
3434

3535
[tool.hatch.build.hooks.meson]
3636

37+
[tool.hatch.build.targets.wheel]
38+
packages = ["robotpy_apriltag"]
39+
3740

3841
[tool.semiwrap]
3942
update_init = [

subprojects/robotpy-hal/pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ version_file = "hal/version.py"
3333

3434
[tool.hatch.build.hooks.meson]
3535

36+
[tool.hatch.build.targets.wheel]
37+
packages = ["hal"]
38+
39+
3640
[tool.semiwrap]
3741
update_init = []
3842
scan_headers_ignore = [

subprojects/robotpy-halsim-ds-socket/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ds-socket = "halsim_ds_socket"
2323

2424

2525
[tool.hatch.build.hooks.robotpy]
26-
version-file = "halsim_ds_socket/version.py"
26+
version_file = "halsim_ds_socket/version.py"
2727

2828
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
2929
artifact_id = "halsim_ds_socket"

subprojects/robotpy-halsim-gui/pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ dependencies = [
3131

3232

3333
[tool.hatch.build.hooks.robotpy]
34-
version-file = "halsim_gui/version.py"
34+
version_file = "halsim_gui/version.py"
3535

3636
[[tool.hatch.build.hooks.robotpy.maven_lib_download]]
3737
artifact_id = "halsim_gui"
@@ -50,6 +50,7 @@ extract_to = "halsim_gui"
5050
[tool.hatch.build.targets.wheel]
5151
packages = ["halsim_gui"]
5252

53+
5354
[tool.semiwrap]
5455
[tool.semiwrap.extension_modules."halsim_gui._ext._halsim_gui_ext"]
5556
name = "halsim_gui_ext"

subprojects/robotpy-halsim-ws/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ authors = [
1414
]
1515
license = "BSD-3-Clause"
1616
dependencies = [
17-
"robotpy-hal~=2025.3.2",
18-
"robotpy-wpinet~=2025.3.2",
17+
"native.wpihal==2025.3.2",
18+
"native.wpinet==2025.3.2",
1919
]
2020

2121
[project.entry-points.robotpysimext]

subprojects/robotpy-halsim-ws/tests/test_halsim_ws_client.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
def test_halsim_ws_client():
66
# dependencies
7-
import wpinet
8-
import hal
7+
import native.wpihal._init_native_wpihal
8+
import native.wpinet._init_native_wpinet
99

1010
import halsim_ws.client as base
1111

subprojects/robotpy-halsim-ws/tests/test_halsim_ws_server.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
def test_halsim_ws_server():
66
# dependencies
7-
import wpinet
8-
import hal
7+
import native.wpihal._init_native_wpihal
8+
import native.wpinet._init_native_wpinet
99

1010
import halsim_ws.server as base
1111

subprojects/robotpy-romi/pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,15 @@ dependencies = [
2727

2828

2929
[tool.hatch.build.hooks.robotpy]
30-
version-file = "romi/version.py"
30+
version_file = "romi/version.py"
3131

3232
[tool.hatch.build.hooks.semiwrap]
3333

3434
[tool.hatch.build.hooks.meson]
3535

36+
[tool.hatch.build.targets.wheel]
37+
packages = ["romi"]
38+
3639

3740
[tool.semiwrap]
3841
update_init = ["romi"]

0 commit comments

Comments
 (0)