Skip to content

Commit

Permalink
chore: fix cq-editor dependency resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
sethfischer committed Feb 23, 2024
1 parent ee609fb commit 3a36d36
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 67 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,6 @@ jobs:

- name: Run tests
run: poetry run pytest

- name: Test CQ-Editor dependency resolution
run: poetry install --no-interaction --with=cq-editor
132 changes: 68 additions & 64 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 9 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,15 @@ optional = true

[tool.poetry.group.cq-editor.dependencies]
cq-editor = {git = "https://github.com/CadQuery/CQ-editor.git", rev = "4b461fe195d0a4e99b9a6c43b7e1fe0cb4c5e77d"}
Logbook = "^1.5.3"
PyQt5 = "^5.15.7"
pyqtgraph = "^0.12.4"
Logbook = "^1.7.0"
pyqt5-qt5 = [ # PyQt5 dependency
{version = "^5.15.2, !=5.15.11, !=5.15.12", platform = "linux"}, # exclude releases without a Linux wheel
]
pyqtwebengine-qt5 = [ # PyQt5 dependency
{version = "^5.15.2, !=5.15.11, !=5.15.12", platform = "linux"}, # exclude releases without a Linux wheel
]
PyQt5 = "^5.15.10"
pyqtgraph = "^0.13.3"
spyder = "^5.3.1"

[tool.isort]
Expand Down

0 comments on commit 3a36d36

Please sign in to comment.