Skip to content

Commit

Permalink
Made the versions easier to update.
Browse files Browse the repository at this point in the history
  • Loading branch information
chipkent committed Apr 30, 2024
1 parent f906127 commit ba169a3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,11 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v1
# TODO: remove
- name: DEBUG
run: pwd
- name: Build
run: |
cd ibwhl
docker-compose -f "docker-compose.yml" up --build
find . -name \*.whl
# TODO: remove
- name: DEBUG
run: pwd && find . -name \*.whl
- name: Archive build artifacts
uses: actions/upload-artifact@v2
with:
Expand Down
7 changes: 5 additions & 2 deletions dhib_env.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,9 @@
import pkginfo
import requests

IB_VERSION_DEFAULT="10.19.04"
DH_VERSION_DEFAULT="0.33.3"

########################################################################################################################
# Shell
########################################################################################################################
Expand Down Expand Up @@ -265,8 +268,8 @@ def cli():

@click.command()
@click.option('--python', default="python3", help='The path to the Python executable to use.')
@click.option('--dh_version', default="0.33.3", help='The version of Deephaven.')
@click.option('--ib_version', default="10.19.04", help='The version of ibapi.')
@click.option('--dh_version', default=DH_VERSION_DEFAULT, help='The version of Deephaven.')
@click.option('--ib_version', default=IB_VERSION_DEFAULT, help='The version of ibapi.')
@click.option('--dh_ib_version', default=None, help='The version of deephaven-ib.')
@click.option('--delete_venv', default=False, help='Whether to delete the virtual environment if it already exists.')
def dev(python: str, dh_version: str, ib_version: str, dh_ib_version: Optional[str], delete_venv: bool):
Expand Down

0 comments on commit ba169a3

Please sign in to comment.