Skip to content

Commit 03052c4

Browse files
[fix] Fix actions & pyproject dependencies
1 parent 3e7e2d8 commit 03052c4

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/pytest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
enable-cache: true
3939

4040
- name: Install the project
41-
run: uv pip install .[test]
41+
run: uv pip install .[tests]
4242

4343
- name: Run tests
4444
run: uv run pytest tests

pyproject.toml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ classifiers = [
2929
dependencies = [
3030
"requests",
3131
"pydantic>=2.4",
32-
"numpy~=1.0",
33-
"oqd-compiler-infrastructure",
34-
"oqd-core",
35-
"oqd-analog-emulator"
32+
"oqd-compiler-infrastructure@git+https://github.com/openquantumdesign/oqd-compiler-infrastructure",
33+
"oqd-core@git+https://github.com/openquantumdesign/oqd-core",
34+
"oqd-compiler-infrastructure@git+https://github.com/openquantumdesign/oqd-analog-emulator",
3635
]
3736

3837
[project.optional-dependencies]
@@ -43,7 +42,7 @@ docs = [
4342
"mkdocstrings-python",
4443
]
4544

46-
test = ["unittest_prettify"]
45+
tests = ["pytest"]
4746

4847
server = [
4948
"pydantic>=2.4",

0 commit comments

Comments
 (0)