Skip to content

Commit

Permalink
Fix python dependencies and GitHub actions YAML
Browse files Browse the repository at this point in the history
  • Loading branch information
julianstirling committed Dec 13, 2024
1 parent 4babecc commit 71ba064
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Generate example docs
uses: coactions/setup-xvfb@v1
with:
run: cadorchestrator --headless generate "{'device-ids': [\"NUC10i5FNH\", \"Raspberry_Pi_4B\", \"Raspberry_Pi_4B\"]}"
run: 'cadorchestrator --headless generate "{\"device-ids\": [\"NUC10i5FNH\", \"Raspberry_Pi_4B\", \"Raspberry_Pi_4B\"]}"'

- name: Upload artifact
uses: actions/upload-pages-artifact@v1
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,10 @@
version = '0.0.1',
python_requires='>=3.10',
install_requires=[
#defined to stop us using numpy 2 that CQ-cli isn't compatible with
'numpy~=1.26',
# 'cadquery>=2',
#Stop whatever requires nlopt pulling in 2.8 which requires numpy v2.0.0
'nlopt<2.8.0',
'cadquery @ git+https://github.com/CadQuery/cadquery.git',
'cadquery-png-plugin @ git+https://github.com/jmwright/cadquery-png-plugin.git',
'cadscript>=0.5.2',
Expand Down

0 comments on commit 71ba064

Please sign in to comment.