Skip to content

Commit

Permalink
Add Cython
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-sheldon committed May 13, 2024
1 parent 216c92e commit 7ce78ec
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/stability_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,10 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install dependencies
- name: Install Cython dependencies
run: sudo apt update && apt install -y gcc build-essential python3-dev

- name: Install python dependencies
run: python3 -m pip install --user .

- name: Run tests
Expand Down
72 changes: 69 additions & 3 deletions poetry.lock

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

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = ">=3.10" # adeft does not support 3.12 yet
python = ">=3.10"
gilda = "^1.1.0"
pandas = "<2" # indra does not support >=2
tqdm = "^4.66.2"
Expand All @@ -27,6 +27,7 @@ requests = "^2.31.0"
click = "^8.1.7"
addict = "^2.4.0"
pydantic = "^2.7.1"
cython = "^3.0.10" # needed for adeft

[tool.poetry.group.test.dependencies]
pytest = "^8.1.1"
Expand Down

0 comments on commit 7ce78ec

Please sign in to comment.