Skip to content
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

120 - re-enable python 3.8 #121

Merged
merged 2 commits into from
Dec 20, 2024
Merged
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
7 changes: 4 additions & 3 deletions Minimal/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def cli(ctx):
@cli.command()
@click.option("--bundle-image", default=None)
@click.option("--rebuild-zbundle", default=False, is_flag=True)
@click.option("--verbose", default=False, is_flag=True)
@click.option("--verbose/--no-verbose", default=True, is_flag=True)
@click.pass_obj
def build(config, bundle_image, rebuild_zbundle, verbose):
"""Build the Docker image"""
Expand All @@ -48,8 +48,9 @@ def build(config, bundle_image, rebuild_zbundle, verbose):
app_deps = config["app_deps"]["edm"]
python_version = str(config["python_version"])
if python_version == "3.8":
raise RuntimeError("Python 3.8 is not supported")
platform = "rh8-x86_64"
platform = "rh7-x86_64"
else:
platform = "rh8-x86_64"

# First, we build a "zbundle" which contains all the eggs needed to
# build the environment within the Docker image.
Expand Down
7 changes: 4 additions & 3 deletions Panel/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def cli(ctx):
@cli.command()
@click.option("--bundle-image", default=None)
@click.option("--rebuild-zbundle", default=False, is_flag=True)
@click.option("--verbose", default=False, is_flag=True)
@click.option("--verbose/--no-verbose", default=True, is_flag=True)
@click.pass_obj
def build(config, bundle_image, rebuild_zbundle, verbose):
"""Build the Docker image"""
Expand All @@ -48,8 +48,9 @@ def build(config, bundle_image, rebuild_zbundle, verbose):
app_deps = config["app_deps"]["edm"]
python_version = str(config["python_version"])
if python_version == "3.8":
raise RuntimeError("Python 3.8 is not supported")
platform = "rh8-x86_64"
platform = "rh7-x86_64"
else:
platform = "rh8-x86_64"

# First, we build a "zbundle" which contains all the eggs needed to
# build the environment within the Docker image.
Expand Down
2 changes: 1 addition & 1 deletion Panel/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
panel
# No pip requirements
7 changes: 4 additions & 3 deletions Plotly Dash/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def cli(ctx):
@cli.command()
@click.option("--bundle-image", default=None)
@click.option("--rebuild-zbundle", default=False, is_flag=True)
@click.option("--verbose", default=False, is_flag=True)
@click.option("--verbose/--no-verbose", default=True, is_flag=True)
@click.pass_obj
def build(config, bundle_image, rebuild_zbundle, verbose):
"""Build the Docker image"""
Expand All @@ -48,8 +48,9 @@ def build(config, bundle_image, rebuild_zbundle, verbose):
app_deps = config["app_deps"]["edm"]
python_version = str(config["python_version"])
if python_version == "3.8":
raise RuntimeError("Python 3.8 is not supported")
platform = "rh8-x86_64"
platform = "rh7-x86_64"
else:
platform = "rh8-x86_64"

# First, we build a "zbundle" which contains all the eggs needed to
# build the environment within the Docker image.
Expand Down
1 change: 0 additions & 1 deletion Plotly Dash/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
dash
Flask-Session
7 changes: 4 additions & 3 deletions React/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def cli(ctx):
@cli.command()
@click.option("--bundle-image", default=None)
@click.option("--rebuild-zbundle", default=False, is_flag=True)
@click.option("--verbose", default=False, is_flag=True)
@click.option("--verbose/--no-verbose", default=True, is_flag=True)
@click.pass_obj
def build(config, bundle_image, rebuild_zbundle, verbose):
"""Build the Docker image"""
Expand All @@ -48,8 +48,9 @@ def build(config, bundle_image, rebuild_zbundle, verbose):
app_deps = config["app_deps"]["edm"]
python_version = str(config["python_version"])
if python_version == "3.8":
raise RuntimeError("Python 3.8 is not supported")
platform = "rh8-x86_64"
platform = "rh7-x86_64"
else:
platform = "rh8-x86_64"

# First, build the React application
jsdir = op.join(SRC_ROOT, "src", "application", "frontend")
Expand Down
7 changes: 4 additions & 3 deletions Streamlit/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def cli(ctx):
@cli.command()
@click.option("--bundle-image", default=None)
@click.option("--rebuild-zbundle", default=False, is_flag=True)
@click.option("--verbose", default=False, is_flag=True)
@click.option("--verbose/--no-verbose", default=True, is_flag=True)
@click.pass_obj
def build(config, bundle_image, rebuild_zbundle, verbose):
"""Build the Docker image"""
Expand All @@ -48,8 +48,9 @@ def build(config, bundle_image, rebuild_zbundle, verbose):
app_deps = config["app_deps"]["edm"]
python_version = str(config["python_version"])
if python_version == "3.8":
raise RuntimeError("Python 3.8 is not supported")
platform = "rh8-x86_64"
platform = "rh7-x86_64"
else:
platform = "rh8-x86_64"

# First, we build a "zbundle" which contains all the eggs needed to
# build the environment within the Docker image.
Expand Down