Skip to content

Commit

Permalink
bootstrap.py to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
EdwinWiseOne committed Nov 15, 2024
1 parent ec52632 commit 2479ff9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Minimal/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def bootstrap(ci_mode):

if ENV_NAME not in _list_edm_envs():
print(f"Creating development environment '{ENV_NAME}'...")
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.8", "--force"]
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.11", "--force"]
subprocess.run(cmd, check=True)

cmd = ["edm", "install", "-e", ENV_NAME, "-y"] + EDM_DEPS
Expand Down
2 changes: 1 addition & 1 deletion Panel/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def bootstrap(ci_mode):

if ENV_NAME not in _list_edm_envs():
print(f"Creating development environment '{ENV_NAME}'...")
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.8", "--force"]
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.11", "--force"]
subprocess.run(cmd, check=True)

cmd = ["edm", "install", "-e", ENV_NAME, "-y"] + EDM_DEPS
Expand Down
2 changes: 1 addition & 1 deletion Plotly Dash/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def bootstrap(ci_mode):

if ENV_NAME not in _list_edm_envs():
print(f"Creating development environment '{ENV_NAME}'...")
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.8", "--force"]
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.11", "--force"]
subprocess.run(cmd, check=True)

cmd = ["edm", "install", "-e", ENV_NAME, "-y"] + EDM_DEPS
Expand Down
2 changes: 1 addition & 1 deletion React/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def bootstrap(ci_mode):

if ENV_NAME not in _list_edm_envs():
print(f"Creating development environment '{ENV_NAME}'...")
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.8", "--force"]
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.11", "--force"]
subprocess.run(cmd, check=True)

cmd = ["edm", "install", "-e", ENV_NAME, "-y"] + EDM_DEPS
Expand Down
2 changes: 1 addition & 1 deletion Streamlit/bootstrap.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def bootstrap(ci_mode):

if ENV_NAME not in _list_edm_envs():
print(f"Creating development environment '{ENV_NAME}'...")
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.8", "--force"]
cmd = ["edm", "envs", "create", ENV_NAME, "--version", "3.11", "--force"]
subprocess.run(cmd, check=True)

cmd = ["edm", "install", "-e", ENV_NAME, "-y"] + EDM_DEPS
Expand Down

0 comments on commit 2479ff9

Please sign in to comment.