-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use xbuild instead of setup.py (#2276)
- Replace setup.py-based build process with the process based on xbuild; - Added 'gitver' command for ext.py; - Added make commands for installing different subsets of requirements: `make extra_install`, `make test_install` and `make docs_install`;
- Loading branch information
Showing
9 changed files
with
60 additions
and
82 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
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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[build-system] | ||
requires = ["setuptools >= 42.0", "wheel"] | ||
build-backend = "setuptools.build_meta:__legacy__" | ||
# requires = ["setuptools >= 42.0", "wheel"] | ||
# build-backend = "setuptools.build_meta:__legacy__" | ||
# requires = ["pip >= 20.0"] | ||
# build-backend = "ext" | ||
# backend-path = ["."] | ||
requires = [] | ||
build-backend = "ext" | ||
backend-path = ["."] |
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,4 +1,5 @@ | ||
docutils>=0.14 | ||
sphinx>=1.8 | ||
sphinx_rtd_theme | ||
nbsphinx>=0.3.5 | ||
https://s3.amazonaws.com/artifacts.h2o.ai/releases/ai/h2o/pydatatable/0.9.0/x86_64-centos7/datatable-0.9.0-cp37-cp37m-linux_x86_64.whl | ||
datatable |
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,3 @@ | ||
numpy | ||
pandas | ||
xlrd |
This file was deleted.
Oops, something went wrong.
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,3 @@ | ||
pytest >=3.1 | ||
pytest-cov | ||
docutils >=0.14 |