Skip to content

Commit 242f822

Browse files
committed
fix: corrected packaging of python wheels/vscode packages
fixes #519
1 parent 554940b commit 242f822

File tree

14 files changed

+18
-12
lines changed

14 files changed

+18
-12
lines changed

.vscodeignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,8 @@ robot.toml
7272
.robotignore
7373

7474
esbuild.mjs
75+
76+
# ai agents
77+
CLAUDE.md
78+
AGENT.md
79+
AGENTS.md

hatch.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ dev-mode-dirs = ["src"]
66

77
[build.targets.wheel]
88
only-include = ["src/robotcode"]
9+
sources = ["src"]
910

1011
[build.targets.sdist]
1112
only-include = ["src", "CHANGELOG.md"]

packages/analyze/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ dev-mode-dirs = ["src"]
5353

5454
[tool.hatch.build.targets.wheel]
5555
only-include = ["src/robotcode"]
56-
56+
sources = ["src"]
5757

5858
[tool.hatch.build.targets.sdist]
5959
only-include = ["src"]

packages/core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dev-mode-dirs = ["src"]
4545

4646
[tool.hatch.build.targets.wheel]
4747
only-include = ["src/robotcode"]
48-
48+
sources = ["src"]
4949

5050
[tool.hatch.build.targets.sdist]
5151
only-include = ["src"]

packages/debugger/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ dev-mode-dirs = ["src"]
5555

5656
[tool.hatch.build.targets.wheel]
5757
only-include = ["src/robotcode"]
58-
58+
sources = ["src"]
5959

6060
[tool.hatch.build.targets.sdist]
6161
only-include = ["src"]

packages/jsonrpc2/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dev-mode-dirs = ["src"]
4545

4646
[tool.hatch.build.targets.wheel]
4747
only-include = ["src/robotcode"]
48-
48+
sources = ["src"]
4949

5050
[tool.hatch.build.targets.sdist]
5151
only-include = ["src"]

packages/language_server/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ dev-mode-dirs = ["src"]
5454

5555
[tool.hatch.build.targets.wheel]
5656
only-include = ["src/robotcode"]
57-
57+
sources = ["src"]
5858

5959
[tool.hatch.build.targets.sdist]
6060
only-include = ["src"]

packages/modifiers/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dev-mode-dirs = ["src"]
4545

4646
[tool.hatch.build.targets.wheel]
4747
only-include = ["src/robotcode"]
48-
48+
sources = ["src"]
4949

5050
[tool.hatch.build.targets.sdist]
5151
only-include = ["src"]

packages/plugin/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ dev-mode-dirs = ["src"]
4949

5050
[tool.hatch.build.targets.wheel]
5151
only-include = ["src/robotcode"]
52-
52+
sources = ["src"]
5353

5454
[tool.hatch.build.targets.sdist]
5555
only-include = ["src"]

packages/repl/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ dev-mode-dirs = ["src"]
5050

5151
[tool.hatch.build.targets.wheel]
5252
only-include = ["src/robotcode"]
53-
53+
sources = ["src"]
5454

5555
[tool.hatch.build.targets.sdist]
5656
only-include = ["src"]

0 commit comments

Comments
 (0)