Skip to content

Commit

Permalink
Support for python 3.11 (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyfowers authored Aug 1, 2024
1 parent aa4b398 commit a3695e9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_turnkey.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
TURNKEY_TRACEBACK: True
strategy:
matrix:
python-version: ["3.8", "3.10"]
python-version: ["3.8", "3.11"]
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion examples/cli/plugins/example_combined/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
name="turnkeyml_plugin_example_combined",
version="1.0.0",
packages=["turnkeyml_plugin_example_combined"],
python_requires=">=3.8, <3.11",
python_requires=">=3.8, <3.12",
)
2 changes: 1 addition & 1 deletion examples/cli/plugins/example_rt/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
name="turnkeyml_plugin_example_rt",
version="0.0.0",
packages=["turnkeyml_plugin_example_rt"],
python_requires=">=3.8, <3.11",
python_requires=">=3.8, <3.12",
)
2 changes: 1 addition & 1 deletion examples/cli/plugins/example_tool/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
name="turnkeyml_plugin_example_tool",
version="0.0.0",
packages=["turnkeyml_plugin_example_tool"],
python_requires=">=3.8, <3.11",
python_requires=">=3.8, <3.12",
)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"turnkey=turnkeyml:turnkeycli",
]
},
python_requires=">=3.8, <3.11",
python_requires=">=3.8, <3.12",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
include_package_data=True,
Expand Down

0 comments on commit a3695e9

Please sign in to comment.