Skip to content

Commit

Permalink
Re-enable python 3.8 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinWiseOne committed Dec 20, 2024
1 parent 5314e6d commit ad5dc23
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 12 deletions.
5 changes: 3 additions & 2 deletions Minimal/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions Panel/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions Plotly Dash/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions React/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
5 changes: 3 additions & 2 deletions Streamlit/ci/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit ad5dc23

Please sign in to comment.