Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ include CHANGES.txt
include LICENSE.txt
include image_LICENSE.txt
include dev_requirements.txt
include pyproject.toml
5 changes: 4 additions & 1 deletion ci/edmtool.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,10 @@ def install(runtime, toolkit, environment):
# Note that enable dependencies will be installed implicitly using pip
("edm run -e {environment} -- "
"pip install git+https://git@github.com/enthought/enable.git"),
"edm run -e {environment} -- pip install . --no-deps",
# Use --no-build-isolation to avoid trying to build using a different
# NumPy version from the one currently installed.
("edm run -e {environment} -- "
"pip install . --no-build-isolation --no-dependencies"),
]
click.echo("Creating environment '{environment}'".format(**parameters))
execute(commands, parameters)
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[build-system]
requires = ["Cython", "numpy", "setuptools", "wheel"]