From b36599d60e2b360a8ed55a1dffea4b7a8894aab0 Mon Sep 17 00:00:00 2001 From: p-wysocki Date: Fri, 15 Sep 2023 12:11:14 +0200 Subject: [PATCH 1/2] Add gfi --- .github/ISSUE_TEMPLATE/good_first_issue.yml | 59 +++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/good_first_issue.yml diff --git a/.github/ISSUE_TEMPLATE/good_first_issue.yml b/.github/ISSUE_TEMPLATE/good_first_issue.yml new file mode 100644 index 00000000000000..2d89a7e385dce4 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/good_first_issue.yml @@ -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 From 2c846d6a84c802ea8232c9d5fd5591c2db751081 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 08:22:05 +0000 Subject: [PATCH 2/2] Update numpy requirement in /src/bindings/python Updates the requirements on [numpy](https://github.com/numpy/numpy) to permit the latest version. - [Release notes](https://github.com/numpy/numpy/releases) - [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst) - [Commits](https://github.com/numpy/numpy/compare/v1.16.6...v2.1.3) --- updated-dependencies: - dependency-name: numpy dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- src/bindings/python/constraints.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bindings/python/constraints.txt b/src/bindings/python/constraints.txt index 30be494ea327bc..8f3791ee9806d4 100644 --- a/src/bindings/python/constraints.txt +++ b/src/bindings/python/constraints.txt @@ -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