Skip to content

Commit

Permalink
#232: Cython missing as a build dependency (#233)
Browse files Browse the repository at this point in the history
* #232: Cython missing as a build dependency

* Updates

Signed-off-by: Eric Kerfoot <[email protected]>

Co-authored-by: Eric Kerfoot <[email protected]>
  • Loading branch information
atbenmurray and ericspod authored Dec 13, 2021
1 parent 418c0bf commit 6d888a4
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,21 @@ jobs:
uses: codecov/codecov-action@v1
with:
file: ./coverage.xml

install_test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, windows-latest, ubuntu-latest]

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7
- name: Install using pip
run: |
python -m pip install --upgrade pip
pip install .
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

[build-system]
requires = ["setuptools", "wheel", "cython"]
build-backend = "setuptools.build_meta"

[project]
name = "ExeTera"

dependencies = ["numpy", "pandas", "h5py", "numba", "cython"]

0 comments on commit 6d888a4

Please sign in to comment.