Skip to content
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

Update numpy requirement from <1.26,>=1.16.6 to >=1.16.6,<2.2 in /src/bindings/python #131

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 59 additions & 0 deletions .github/ISSUE_TEMPLATE/good_first_issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Good First Issue
description: A template for creation of Good First Issues
title: "[Good First Issue]: "
labels: ["good first issue", "no_stale"]
body:
- type: textarea
id: context
attributes:
label: Context
description: |
Let the contributors know what your component is responsible for,
what's the importance of the change and why it's needed.
Keep in mind the Good First Issue is for new contributors.
placeholder: What is it and why is it important?
validations:
required: true

- type: textarea
id: todo_list
attributes:
label: What needs to be done?
description: |
Be as verbose as possible, provide a TODO list if viable.
validations:
required: true

- type: textarea
id: example_prs
attributes:
label: Exmaple Pull Requests
description: |
Provide example Pull requests, if there are any.
validations:
required: false

- type: textarea
id: resources
attributes:
label: Resources
description: |
Any materials related to the task, such as operator specifications,
discussions, guides.
value: |
[What is OpenVINO?](https://github.com/openvinotoolkit/openvino#what-is-openvino-toolkit)
[Contribution guide](https://github.com/openvinotoolkit/openvino/blob/master/CONTRIBUTING.md)
[Blog post on contributing to OpenVINO](https://github.com/openvinotoolkit/openvino/blob/master/CONTRIBUTING.md)
[User documentation](https://docs.openvino.ai/)
validations:
required: true

- type: textarea
id: contact_points
attributes:
label: Contact points
description: |
People who can be asked questions about the task.
placeholder: @openvino-pushbot
validations:
required: true
2 changes: 1 addition & 1 deletion src/bindings/python/constraints.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# used in multiple components
numpy>=1.16.6,<1.26 # Python bindings, frontends
numpy>=1.16.6,<2.2 # Python bindings, frontends

# pytest
pytest>=5.0,<7.5
Expand Down
Loading