-
Couldn't load subscription status.
- Fork 0
Update to Poetry 2.1.4 #142
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
Merged
Merged
Conversation
This file contains hidden or 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
jfriedri-ni
approved these changes
Aug 25, 2025
bkeryan
reviewed
Aug 25, 2025
| {version = "1.49.1", python = ">=3.9,<3.12"}, | ||
| {version = "1.59.0", python = ">=3.12,<3.13"}, | ||
| {version = "1.67.0", python = "^3.13"}, | ||
| [project.optional-dependencies] |
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.
Converting dependency groups to extras is completely wrong. Please revert this.
Before:
Metadata-Version: 2.3
Name: nipanel
Version: 0.1.0
Summary: NI Panel Python API
Author: NI
Author-email: [email protected]
Requires-Python: >=3.9, !=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*, !=3.8.*
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: debugpy (>=1.8.1)
Requires-Dist: grpcio (>=1.49.0,<2.0)
Requires-Dist: ni-measurement-plugin-sdk (>=2.4.0dev1)
Requires-Dist: ni-panels-v1-proto (>=0.1.0dev1)
Requires-Dist: ni-protobuf-types (>=0.1.0dev2)
Requires-Dist: nitypes (>=0.1.0dev8)
Requires-Dist: numpy (>=1.22)
Requires-Dist: protobuf (>=4.21)
Requires-Dist: streamlit (>=1.24)
Requires-Dist: typing-extensions (>=4.13.2)
Description-Content-Type: text/markdown
# nipanel-python
Source for the nipanel python package
After:
Metadata-Version: 2.3
Name: nipanel
Version: 0.1.0
Summary: NI Panel Python API
Author: NI
Author-email: [email protected]
Requires-Python: >=3.9,<4.0,!=3.9.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: examples
Provides-Extra: lint
Provides-Extra: test
Requires-Dist: Sphinx (>=8.2) ; (python_version >= "3.11") and (extra == "docs")
Requires-Dist: bandit[toml] (>=1.7) ; extra == "lint"
Requires-Dist: debugpy (>=1.8.1)
Requires-Dist: extra-streamlit-components (>=0.1.80) ; extra == "examples"
Requires-Dist: grpcio (>=1.49.0,<2.0)
Requires-Dist: hightime (>=0.2.2) ; extra == "test"
Requires-Dist: m2r2 (>=0.3.2) ; extra == "docs"
Requires-Dist: mypy (>=1.0) ; extra == "lint"
Requires-Dist: ni-measurement-plugin-sdk (>=2.4.0dev1)
Requires-Dist: ni-panels-v1-proto (>=0.1.0dev1)
Requires-Dist: ni-protobuf-types (>=0.1.0dev3)
Requires-Dist: ni-python-styleguide (>=0.4.1) ; extra == "lint"
Requires-Dist: nidaqmx (>=0.8.0) ; extra == "examples"
Requires-Dist: niscope (>=1.4.9) ; extra == "examples"
Requires-Dist: nitypes (>=0.1.0dev8)
Requires-Dist: numpy (>=1.22)
Requires-Dist: numpy (>=1.22) ; (python_version >= "3.9" and python_version < "3.12") and (extra == "dev")
Requires-Dist: numpy (>=1.26) ; (python_version == "3.12") and (extra == "dev")
Requires-Dist: numpy (>=2.1) ; (python_version >= "3.13") and (extra == "dev")
Requires-Dist: protobuf (>=4.21)
Requires-Dist: pyright[nodejs] (>=1.1.400) ; extra == "lint"
Requires-Dist: pytest (>=7.2) ; extra == "test"
Requires-Dist: pytest-cov (>=4.0) ; extra == "test"
Requires-Dist: pytest-mock (>=3.0) ; extra == "test"
Requires-Dist: sphinx-autoapi (>=1.8.4) ; extra == "docs"
Requires-Dist: sphinx-rtd-theme (>=1.0.0) ; extra == "docs"
Requires-Dist: streamlit (>=1.24)
Requires-Dist: streamlit-echarts (>=0.4.0) ; extra == "examples"
Requires-Dist: toml (>=0.10.2) ; extra == "docs"
Requires-Dist: types-grpcio (>=1.0) ; extra == "dev"
Requires-Dist: types-protobuf (>=4.21) ; extra == "dev"
Requires-Dist: typing-extensions (>=4.13.2)
Description-Content-Type: text/markdown
# nipanel-python
Source for the nipanel python package
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
What does this Pull Request accomplish?
Updates the repo to use Poetry v2.1.4
Why should this Pull Request be merged?
What testing has been done?
Ran the autotests and did some interactive testing with the all_types example.