-
Notifications
You must be signed in to change notification settings - Fork 97
Integrate numba into setuptools [ESD-1156] #687
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
72b60f4
Integrate CFFI into setuptools
pmiettinen 62a9cc4
Upgrade setuptools
pmiettinen 46c2fbe
tox: remove explicit call to parse_float.py
pmiettinen b030fcc
Add sbp.jit to packages and rework parse_float_c importing
pmiettinen b02503a
Numba Ahead-Of-Time
pmiettinen 33cd89f
Distinct module names for different Python versions
pmiettinen 6f17e36
Remove CFFI dependency
pmiettinen 3a01cbe
piksi_tools dev branch
pmiettinen 1f7c7d6
Update benchmark threshold to 1.4
pmiettinen aa3f287
Treat as external module in setup
pmiettinen 145009e
Remove parse_float module
pmiettinen ad4cfd9
Resolve setup.py requirements
pmiettinen 37a1e3a
Rename CRC table
pmiettinen e341a7e
Cleanup
pmiettinen 1e09b98
Build separate wheel for each supported Python version
pmiettinen 42bcd8b
Quick and dirty port of deploy.bash to deploy.py for Windows.
d7e117c
temp 2.5.6
5559a70
Fix vesion reading on Python 2.7
2086434
Don't use context version of temp dir
23cdc63
Fix sbp._version issue without reload
0c76b49
Support USE_TEST_PYPI flag
c8ec820
Issue warning for test PyPI
silverjam 1d59df1
Specify python3 for *nix
1a4f8c5
Install gcc for Linux
cdcb901
Add support for ARM Linux
silverjam 7d477bd
Docs, ability to build an "any" wheel
silverjam File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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,14 @@ | ||
| FROM balenalib/armv7hf-debian:sid-build | ||
|
|
||
| RUN [ "cross-build-start" ] | ||
|
|
||
| RUN \ | ||
| echo Setting up ARM build environment... \ | ||
| && apt-get update \ | ||
| && apt-get install wget bzip2 build-essential llvm-6.0-dev python3 \ | ||
| && update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-6.0 1 \ | ||
| && wget -O /tmp/miniconda.sh https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-armv7l.sh \ | ||
| && bash /tmp/miniconda.sh -b \ | ||
| && rm /tmp/miniconda.sh | ||
|
|
||
| ENV PATH=/root/miniconda3/bin:$PATH |
This file contains hidden or 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 hidden or 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,8 +1,14 @@ | ||
|
|
||
| .PHONY: deploy | ||
|
|
||
| DEPLOY_PYTHON := $(CURDIR)/deploy.bash | ||
| DEPLOY_COMMAND := SBP_VERSION=$(SBP_VERSION) $(SHELL) $(DEPLOY_PYTHON) | ||
| ifeq ($(OS),Windows_NT) | ||
| PYTHON := python | ||
| else | ||
| PYTHON := python3 | ||
| endif | ||
|
|
||
| DEPLOY_PYTHON := $(CURDIR)/deploy.py | ||
| DEPLOY_COMMAND := $(PYTHON) $(DEPLOY_PYTHON) | ||
|
|
||
| deploy: export SBP_VERSION=$(SBP_VERSION) | ||
| deploy: | ||
| $(DEPLOY_COMMAND) |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix after merge