-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use Deephaven as a Python Library (#63)
* Progress towards using DHaaL * Trying to build whl files * Trying to build whl files * Working to fix sphinx * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Working to fix sphinx and build * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * Added docker builds * added deephaven_server to docs. * Refactored local docker. * Updated documentation. * Updated documentation. * Updated documentation. * Renamed the wheel version number for dev branches to make twine happy. * Set pypi publishing credential. * Updated readme with run instructions * Updated readme with better run instructions * Updated readme * Fixed readme bugs * Fixed docs on port exposure * Handle blocking contract error conditions properly. * Better error reporting on contract details problems. * Fixed example code.
- Loading branch information
Showing
23 changed files
with
405 additions
and
321 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
|
||
FROM ubuntu:22.04 | ||
|
||
RUN apt update && \ | ||
apt install -y openjdk-11-jdk python3-pip | ||
|
||
ENV JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64/ | ||
|
||
COPY ./wheels /wheels | ||
|
||
RUN pip3 install /wheels/*.whl && \ | ||
rm -rf /wheels/ | ||
|
||
CMD python3 |
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,26 @@ | ||
# Delete Docker images after PR merge | ||
# | ||
|
||
name: 'Clean up Docker images from PR' | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
purge-image: | ||
name: Delete images from ghcr.io | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Delete image (Base) | ||
uses: chipkent/action-cleanup-package@v1.0.2 | ||
with: | ||
package-name: ${{ github.event.repository.name }}-base | ||
tag: pr-${{ github.event.pull_request.number }} | ||
github-token: ${{ secrets.CI_ACTION_TOKEN }} | ||
- name: Delete image (Downloader) | ||
uses: chipkent/action-cleanup-package@v1.0.2 | ||
with: | ||
package-name: ${{ github.event.repository.name }}-downloader | ||
tag: pr-${{ github.event.pull_request.number }} | ||
github-token: ${{ secrets.CI_ACTION_TOKEN }} |
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 |
---|---|---|
@@ -1,4 +1,7 @@ | ||
.idea | ||
venv | ||
dist | ||
src/deephaven_ib.egg-info | ||
src/deephaven_ib.egg-info | ||
docker/data | ||
docker/*/data | ||
docker/*/build |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.