Skip to content

Commit 524b17a

Browse files
Fix core installation to use commit0[core] instead of commit0-core
1 parent f66f03b commit 524b17a

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

.github/workflows/system.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,24 +61,24 @@ jobs:
6161
- name: Install the project (core)
6262
run: uv pip install -e .[core]
6363
- name: Set up commit0
64-
run: uv run commit0-core setup simpy
64+
run: uv run commit0 setup simpy
6565
- name: Build docker images
66-
run: uv run commit0-core build
66+
run: uv run commit0 build
6767
- name: Get tests
68-
run: uv run commit0-core get-tests simpy
68+
run: uv run commit0 get-tests simpy
6969
- name: Test
7070
env:
7171
MODAL_TOKEN_ID: ${{secrets.MODAL_TOKEN_ID}}
7272
MODAL_TOKEN_SECRET: ${{secrets.MODAL_TOKEN_SECRET}}
7373
run: |
74-
uv run commit0-core test simpy tests/test_event.py::test_succeed --reference --rebuild
75-
uv run commit0-core test simpy tests/test_event.py::test_succeed --reference
74+
uv run commit0 test simpy tests/test_event.py::test_succeed --reference --rebuild
75+
uv run commit0 test simpy tests/test_event.py::test_succeed --reference
7676
- name: Evaluate
7777
env:
7878
MODAL_TOKEN_ID: ${{secrets.MODAL_TOKEN_ID}}
7979
MODAL_TOKEN_SECRET: ${{secrets.MODAL_TOKEN_SECRET}}
8080
run: |
81-
uv run commit0-core evaluate --reference --rebuild
82-
uv run commit0-core evaluate --reference
81+
uv run commit0 evaluate --reference --rebuild
82+
uv run commit0 evaluate --reference
8383
- name: Lint
84-
run: uv run commit0-core lint commit0/harness/
84+
run: uv run commit0 lint commit0/harness/

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ classifiers = [
3030

3131
[project.scripts]
3232
commit0 = "commit0.__main__:main"
33-
agent = "commit0.optional.agent.__main__:main"
3433

3534
[tool.hatch.build.targets.wheel]
3635
packages = ["commit0"]

0 commit comments

Comments
 (0)