-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace cyfunc with native cython ufuncs. (#28)
* Add workflow dispatch trigger. * Update actions and Python version. * Add `.readthedocs.yaml` config and `index.rst` symlink. * Fix Python version identifier. * Preinstall cython and cyfunc. * Remove compiled cython for `clean` target. * Update requirements and replace cyfunc with `cython.ufunc`. * Update cython installation. * Add pyproject.toml for build dependencies. * Remove Cython pre-install step.
- Loading branch information
1 parent
6f6e2d8
commit ee7c652
Showing
10 changed files
with
256 additions
and
274 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
version: 2 | ||
|
||
build: | ||
os: ubuntu-22.04 | ||
tools: | ||
python: "3.10" | ||
python: | ||
install: | ||
- requirements: requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
README.rst |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[build-system] | ||
requires = ["setuptools", "wheel", "Cython", "numpy", "scipy"] | ||
|
||
[project] | ||
name = 'shedding' | ||
version = '0.1' | ||
authors = [{ name = 'Till Hoffmann' }] | ||
dependencies = ['numpy', 'scipy'] | ||
|
||
[tool.setuptools] | ||
packages = ['shedding'] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,14 @@ | ||
-e file:.[tests,docs] | ||
-e file:. | ||
cython | ||
flake8 | ||
jinja2 | ||
jsonschema | ||
jupyter | ||
linuxdoc @ git+http://github.com/return42/linuxdoc.git | ||
localscope | ||
matplotlib | ||
pandas | ||
pytest | ||
pytest-cov | ||
sphinx | ||
tqdm |
Oops, something went wrong.