-
Notifications
You must be signed in to change notification settings - Fork 15
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
GitHub workflows: Test with Python 3.13 and use Python 3.11.9 by default #1061
Open
bkeryan
wants to merge
4
commits into
main
Choose a base branch
from
users/bkeryan/python-3.13
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
|
||
env: | ||
POETRY_VERSION: 1.8.2 | ||
PYTHON_VERSION: 3.9 | ||
PYTHON_VERSION: 3.11.9 | ||
|
||
jobs: | ||
check_examples: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
|
||
env: | ||
POETRY_VERSION: 1.8.2 | ||
PYTHON_VERSION: 3.9 | ||
PYTHON_VERSION: 3.11.9 | ||
|
||
jobs: | ||
check_nimg: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ on: | |
|
||
env: | ||
POETRY_VERSION: 1.8.2 | ||
PYTHON_VERSION: 3.9 | ||
PYTHON_VERSION: 3.11.9 | ||
|
||
jobs: | ||
check_nims: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,7 +31,7 @@ python = "^3.8" | |
# below. Please keep the minimum grpcio version in sync with the grpcio-tools version. Otherwise, | ||
# the generated gRPC stubs may not work with the minimum grpcio version. | ||
grpcio = "^1.49.1" | ||
protobuf = "^4.21" | ||
protobuf = ">=4.21" | ||
pywin32 = {version = ">=303", platform = "win32"} | ||
deprecation = ">=2.1" | ||
# https://github.com/microsoft/tracelogging/issues/58 - traceloggingdynamic raises TypeError with Python 3.8 | ||
|
@@ -62,14 +62,15 @@ ni-python-styleguide = ">=0.4.1" | |
# and regenerate gRPC stubs. | ||
grpcio-tools = [ | ||
{version = "1.49.1", python = ">=3.8,<3.12"}, | ||
{version = "1.59.0", python = "^3.12"}, | ||
{version = "1.59.0", python = ">=3.12,<3.13"}, | ||
{version = "1.67.0", python = "^3.13"}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is incompatible with nimi-python's |
||
] | ||
pytest-cov = ">=3.0.0" | ||
pytest-mock = ">=3.0" | ||
tox = ">=4.0" | ||
mypy = ">=1.0" | ||
mypy-protobuf = ">=3.4" | ||
types-protobuf = "^4.21" | ||
types-protobuf = ">=4.21" | ||
types-setuptools = "*" | ||
types-pywin32 = ">=304" | ||
grpc-stubs = "^1.53" | ||
|
@@ -79,7 +80,7 @@ types-psutil = ">=6.0" | |
# we need to include multiple NumPy versions in poetry.lock. | ||
numpy = [ | ||
{version = ">=1.22", python = ">=3.8,<3.12"}, | ||
{version = ">=1.26", python = ">=3.12,<3.13"}, | ||
{version = ">=1.26", python = "^3.12"}, | ||
] | ||
bandit = { version = ">=1.7", extras = ["toml"] } | ||
|
||
|
@@ -89,7 +90,7 @@ optional = true | |
[tool.poetry.group.docs.dependencies] | ||
Sphinx = [ | ||
{version = ">=7.1.2", python = ">=3.8,<3.9"}, | ||
{version = ">=7.2.0", python = ">=3.9,<3.13"}, | ||
{version = ">=7.2.0", python = "^3.9"}, | ||
] | ||
sphinx-rtd-theme = ">=1.0.0" | ||
sphinx-autoapi = ">=1.8.4" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This poetry.lock is out of date due to the nimi-python <-> grpcio-tools <-> protobuf version conflict.