Skip to content

Commit

Permalink
Support any Python 3.12 version
Browse files Browse the repository at this point in the history
  • Loading branch information
corey committed Dec 10, 2023
1 parent 0c442fa commit 35bcaab
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion python/origen/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ generate-setup-file = false
origen = 'origen.__bin__:run_origen'

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
origen_metal = "= 0.4.0"
termcolor = ">= 1.1.0"
colorama = "^0.4"
Expand Down
2 changes: 1 addition & 1 deletion python/origen_metal/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ include = [
]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
pyreadline3 = { version="^3.3", platform="win32" }
termcolor = ">= 1.1.0"
colorama = ">= 0.4.4" # Note: colorama is usually installed on the system already, but it isn't actually required (e.g. WSL won't have this by default)
Expand Down
2 changes: 1 addition & 1 deletion test_apps/no_workspace/templates/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Origen Installation Test"
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
{% if local_origen %}
origen = { path = "{{ o2_root.joinpath("python/origen").as_posix() }}", develop = true }
origen_metal = { path = "{{ o2_root.joinpath("python/origen_metal").as_posix() }}", develop = true }
Expand Down
2 changes: 1 addition & 1 deletion test_apps/no_workspace/user_install/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Origen Installation Test"
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"

origen = { path = "../../../python/origen", develop = true }
origen_metal = { path = "../../../python/origen_metal", develop = true }
Expand Down
2 changes: 1 addition & 1 deletion test_apps/pl_ext_cmds/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Plugin Extending Cmds"
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
origen = { path = "../../python/origen", develop = true }
origen_metal = ">=0.0.0"

Expand Down
2 changes: 1 addition & 1 deletion test_apps/python_app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = ""
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
origen = "= 2.0.0.dev5"
python_plugin = { path = "../python_plugin", develop = true }
test_apps_shared_test_helpers = { path = "../test_apps_shared_test_helpers", develop = true }
Expand Down
2 changes: 1 addition & 1 deletion test_apps/python_no_app/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "O2 workspace without an application"
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
origen = { path = "../../python/origen", develop = true }
origen_metal = { path = "../../python/origen_metal", develop = true }
python_plugin = { path = "../python_plugin", develop = true }
Expand Down
2 changes: 1 addition & 1 deletion test_apps/python_plugin/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Example Origen Plugin"
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
origen = { path = "../../python/origen", develop = true }

[tool.poetry.dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion test_apps/python_plugin_no_cmds/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Example Origen Plugin Without Any Commands"
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
origen = { path = "../../python/origen", develop = true }
origen_metal = { path = "../../python/origen_metal", develop = true }

Expand Down
2 changes: 1 addition & 1 deletion test_apps/python_plugin_the_second/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Another Example Origen Plugin"
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
origen = { path = "../../python/origen", develop = true }
origen_metal = { path = "../../python/origen_metal", develop = true }

Expand Down
2 changes: 1 addition & 1 deletion test_apps/test_apps_shared_test_helpers/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "Shared Regression Test Helpers for Test Apps"
authors = ["Origen-SDK"]

[tool.poetry.dependencies]
python = ">=3.7.0,<=3.12"
python = ">=3.7.0,<=3.12.*"
pytest = ">=7.2.1"
origen = { path = "../../python/origen", develop = true }
pl_ext_cmds = { path = "../pl_ext_cmds", develop = true }
Expand Down

0 comments on commit 35bcaab

Please sign in to comment.