We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c82386f commit 4789630Copy full SHA for 4789630
.github/workflows/smoke_test.yml
@@ -22,7 +22,7 @@ jobs:
22
strategy:
23
fail-fast: false
24
matrix:
25
- os: [ubuntu-latest, macos-10.15, windows-latest]
+ os: [ubuntu-latest, macos-latest, windows-latest]
26
python-version: [3.8, 3.9]
27
28
steps:
@@ -47,10 +47,13 @@ jobs:
47
- run: sudo apt-get -y install graphviz
48
if: matrix.os == 'ubuntu-latest'
49
- run: brew install graphviz
50
- if: matrix.os == 'macOS-10.15'
+ if: matrix.os == 'macOS-latest'
51
- run: choco install graphviz
52
if: matrix.os == 'windows-latest'
53
54
+ - run: python -m pip install cython numpy versioneer pybind11 matplotlib lxml
55
56
+
57
- name: Install Quark-Engine
58
run: |
59
python setup.py build
0 commit comments