From 2305331ccee667f20b2588296bf5abc286aea168 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 19 Apr 2023 14:10:07 +0100 Subject: [PATCH 01/19] up version and fix lower Python pin --- recipe/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 429ca40..8f49780 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -1,5 +1,5 @@ {% set name = "prospector" %} -{% set version = "1.7.7" %} +{% set version = "1.9.0" %} package: @@ -8,7 +8,7 @@ package: source: url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/prospector-{{ version }}.tar.gz - sha256: c04b3d593e7c525cf9a742fed62afbe02e2874f0e42f2f56a49378fd94037360 + sha256: 599f31516f857d785058773875e9358702ad653e65461e8cad44134d8ee17b1f build: number: 0 @@ -19,7 +19,7 @@ build: requirements: host: - - python >=3.6.1,<4.0 + - python >=3.7.2,<4.0 - pip - poetry-core >=1.0.0 From 4a550dac75c41eba643d9130fe60dbc3d3865704 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 19 Apr 2023 14:32:18 +0100 Subject: [PATCH 02/19] frosted is now an optional tool --- recipe/meta.yaml | 3 --- 1 file changed, 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 8f49780..ffa1434 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -44,7 +44,6 @@ requirements: run_constrained: - bandit >=1.5.1 - - frosted >=1.4.1 - vulture >=1.5 - mypy >=0.600 - pyroma >=2.4 @@ -52,7 +51,6 @@ requirements: test: requires: - bandit >=1.5.1 - - frosted >=1.4.1 - vulture >=1.5 - mypy >=0.600 - pyroma >=2.4 @@ -64,7 +62,6 @@ test: - prospector.tools - prospector.tools.bandit - prospector.tools.dodgy - - prospector.tools.frosted - prospector.tools.mccabe - prospector.tools.mypy - prospector.tools.profile_validator From 316bc0f888e7ced26763f3671df9b96ab80184cf Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Wed, 19 Apr 2023 13:34:47 +0000 Subject: [PATCH 03/19] MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.04.19.11.32.27 --- .circleci/config.yml | 5 ++-- .scripts/build_steps.sh | 9 +++++++- LICENSE.txt | 30 +++++++++++++++++------- README.md | 51 +++++++++++++++++++++++++++++++---------- build-locally.py | 19 ++++++++++----- 5 files changed, 85 insertions(+), 29 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ad461b..8b4ef2f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,13 +1,14 @@ # This file was generated automatically from conda-smithy. To update this configuration, # update the conda-forge.yml and/or the recipe/meta.yaml. -# -*- mode: yaml -*- +# -*- mode: jinja-yaml -*- version: 2 jobs: build: working_directory: ~/test - machine: true + machine: + image: ubuntu-2004:current steps: - run: # The Circle-CI build should not be active, but if this is not true for some reason, do a fast finish. diff --git a/.scripts/build_steps.sh b/.scripts/build_steps.sh index d71d6ae..595f8b5 100755 --- a/.scripts/build_steps.sh +++ b/.scripts/build_steps.sh @@ -24,7 +24,10 @@ export CONFIG_FILE="${CI_SUPPORT}/${CONFIG}.yaml" cat >~/.condarc < /dev/null +if [[ -f "${FEEDSTOCK_ROOT}/LICENSE.txt" ]]; then + cp "${FEEDSTOCK_ROOT}/LICENSE.txt" "${RECIPE_ROOT}/recipe-scripts-license.txt" +fi + if [[ "${BUILD_WITH_CONDA_DEBUG:-0}" == 1 ]]; then if [[ "x${BUILD_OUTPUT_ID:-}" != "x" ]]; then EXTRA_CB_OPTIONS="${EXTRA_CB_OPTIONS:-} --output-id ${BUILD_OUTPUT_ID}" diff --git a/LICENSE.txt b/LICENSE.txt index 6ec1401..2ec51d7 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -1,13 +1,27 @@ -BSD 3-clause license +BSD-3-Clause license Copyright (c) 2015-2022, conda-forge contributors All rights reserved. -Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: +Redistribution and use in source and binary forms, with or without +modification, are permitted provided that the following conditions are met: -1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + 3. Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. -2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - -3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. - -THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE +ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR +ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT +LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY +OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH +DAMAGE. diff --git a/README.md b/README.md index 6eb086f..1243dc7 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -About prospector -================ +About prospector-feedstock +========================== + +Feedstock license: [BSD-3-Clause](https://github.com/conda-forge/prospector-feedstock/blob/main/LICENSE.txt) Home: https://pypi.org/project/prospector/ Package license: GPL-2.0-or-later -Feedstock license: [BSD-3-Clause](https://github.com/conda-forge/prospector-feedstock/blob/master/LICENSE.txt) - Summary: Prospector: python static analysis tool Development: https://github.com/PyCQA/prospector @@ -19,8 +19,8 @@ Current build status @@ -43,18 +43,43 @@ conda config --add channels conda-forge conda config --set channel_priority strict ``` -Once the `conda-forge` channel has been enabled, `prospector` can be installed with: +Once the `conda-forge` channel has been enabled, `prospector` can be installed with `conda`: ``` conda install prospector ``` -It is possible to list all of the versions of `prospector` available on your platform with: +or with `mamba`: + +``` +mamba install prospector +``` + +It is possible to list all of the versions of `prospector` available on your platform with `conda`: ``` conda search prospector --channel conda-forge ``` +or with `mamba`: + +``` +mamba search prospector --channel conda-forge +``` + +Alternatively, `mamba repoquery` may provide more information: + +``` +# Search all versions available on your platform: +mamba repoquery search prospector --channel conda-forge + +# List packages depending on `prospector`: +mamba repoquery whoneeds prospector --channel conda-forge + +# List dependencies of `prospector`: +mamba repoquery depends prospector --channel conda-forge +``` + About conda-forge ================= @@ -70,10 +95,12 @@ for each of the installable packages. Such a repository is known as a *feedstock A feedstock is made up of a conda recipe (the instructions on what and how to build the package) and the necessary configurations for automatic building using freely available continuous integration services. Thanks to the awesome service provided by -[CircleCI](https://circleci.com/), [AppVeyor](https://www.appveyor.com/) -and [TravisCI](https://travis-ci.com/) it is possible to build and upload installable -packages to the [conda-forge](https://anaconda.org/conda-forge) -[Anaconda-Cloud](https://anaconda.org/) channel for Linux, Windows and OSX respectively. +[Azure](https://azure.microsoft.com/en-us/services/devops/), [GitHub](https://github.com/), +[CircleCI](https://circleci.com/), [AppVeyor](https://www.appveyor.com/), +[Drone](https://cloud.drone.io/welcome), and [TravisCI](https://travis-ci.com/) +it is possible to build and upload installable packages to the +[conda-forge](https://anaconda.org/conda-forge) [Anaconda-Cloud](https://anaconda.org/) +channel for Linux, Windows and OSX respectively. To manage the continuous integration and simplify feedstock maintenance [conda-smithy](https://github.com/conda-forge/conda-smithy) has been developed. diff --git a/build-locally.py b/build-locally.py index eec38a0..3f4b7a7 100755 --- a/build-locally.py +++ b/build-locally.py @@ -86,12 +86,19 @@ def main(args=None): verify_config(ns) setup_environment(ns) - if ns.config.startswith("linux") or ( - ns.config.startswith("osx") and platform.system() == "Linux" - ): - run_docker_build(ns) - elif ns.config.startswith("osx"): - run_osx_build(ns) + try: + if ns.config.startswith("linux") or ( + ns.config.startswith("osx") and platform.system() == "Linux" + ): + run_docker_build(ns) + elif ns.config.startswith("osx"): + run_osx_build(ns) + finally: + recipe_license_file = os.path.join( + "recipe", "recipe-scripts-license.txt" + ) + if os.path.exists(recipe_license_file): + os.remove(recipe_license_file) if __name__ == "__main__": From 0befd76f84905ca6451f46e468fa72ae6e4f9854 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 19 Apr 2023 15:06:37 +0100 Subject: [PATCH 04/19] adjust pins in line with poetry for 1.9.0 --- recipe/meta.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index ffa1434..6ee9baa 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,19 +26,19 @@ requirements: run: - backports.zoneinfo # https://github.com/conda-forge/django-feedstock/issues/134 - dodgy >=0.2.1,<0.3.0 - - mccabe >=0.6.0,<0.7.0 - - pep8-naming >=0.3.3,<=0.10.0 - - pycodestyle >=2.6.0,<2.9.0 - - pydocstyle >=2.0.0 + - mccabe >=0.7.0,<0.8.0 + - pep8-naming >=0.10.0 + - pycodestyle >=2.9.0 + - pydocstyle >=6.3.0 - pyflakes >=2.2.0,<3.0 - pylint >=2.8.3,<3.0.0 - pylint-celery ==0.3 - pylint-django >=2.5,<2.6.0 - pylint-flask ==0.6 - pylint-plugin-utils >=0.7,<0.8 - - python >=3.6.2,<4.0 + - python >=3.7.2,<4.0 - pyyaml - - requirements-detector >=0.7,<0.8 + - requirements-detector >=1.0.3 - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 From 386b89eab37f15517eda866dca595dca73e548a3 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 19 Apr 2023 15:23:12 +0100 Subject: [PATCH 05/19] adjust pin of requirements-detector --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 6ee9baa..e35bed7 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -38,7 +38,7 @@ requirements: - pylint-plugin-utils >=0.7,<0.8 - python >=3.7.2,<4.0 - pyyaml - - requirements-detector >=1.0.3 + - requirements-detector >=0.7 - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 From d4d7412816c801d315bc9a858f211fa569e82479 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 19 Apr 2023 15:40:50 +0100 Subject: [PATCH 06/19] adjust pins again --- recipe/meta.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index e35bed7..c3ca3a4 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -26,12 +26,14 @@ requirements: run: - backports.zoneinfo # https://github.com/conda-forge/django-feedstock/issues/134 - dodgy >=0.2.1,<0.3.0 + - flake8 <6.0.0 - mccabe >=0.7.0,<0.8.0 - - pep8-naming >=0.10.0 + - packaging + - pep8-naming >=0.3.3,<=0.10.0 - pycodestyle >=2.9.0 - pydocstyle >=6.3.0 - pyflakes >=2.2.0,<3.0 - - pylint >=2.8.3,<3.0.0 + - pylint >=2.8.3 - pylint-celery ==0.3 - pylint-django >=2.5,<2.6.0 - pylint-flask ==0.6 From d47a8fef6f493504688583ee5ac8ae309febefaa Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 19 Apr 2023 15:53:23 +0100 Subject: [PATCH 07/19] add deps to pip install --- recipe/meta.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index c3ca3a4..8ccba2c 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -40,9 +40,11 @@ requirements: - pylint-plugin-utils >=0.7,<0.8 - python >=3.7.2,<4.0 - pyyaml - - requirements-detector >=0.7 - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 + - pip: + - requirements-detector >=1.0.3 + - GitPython >=3.1.27 run_constrained: - bandit >=1.5.1 From 2347099f5cd7c99e108d50ad90de2e215a2dad44 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 19 Apr 2023 16:03:48 +0100 Subject: [PATCH 08/19] well that was worth a try; comment out as missing pkgs the pip ones --- recipe/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 8ccba2c..d4424ff 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -42,9 +42,9 @@ requirements: - pyyaml - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 - - pip: - - requirements-detector >=1.0.3 - - GitPython >=3.1.27 + # from pip at the moment: + # - requirements-detector >=1.0.3 + # - GitPython >=3.1.27 run_constrained: - bandit >=1.5.1 From fbd56b3133e63acbd30660dbd09ccea6de9ce8a7 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Wed, 19 Apr 2023 16:19:20 +0100 Subject: [PATCH 09/19] clean up recipe and add mention about requirements-detector --- recipe/meta.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index d4424ff..e9df7db 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -27,6 +27,7 @@ requirements: - backports.zoneinfo # https://github.com/conda-forge/django-feedstock/issues/134 - dodgy >=0.2.1,<0.3.0 - flake8 <6.0.0 + - gitpython >=3.1.27 - mccabe >=0.7.0,<0.8.0 - packaging - pep8-naming >=0.3.3,<=0.10.0 @@ -42,9 +43,10 @@ requirements: - pyyaml - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 - # from pip at the moment: - # - requirements-detector >=1.0.3 - # - GitPython >=3.1.27 + # from PyPi only at the moment: + # requirements-detector >=1.0.3 + # opened PR to bump version + # github.com/conda-forge/requirements-detector-feedstock/pull/18 run_constrained: - bandit >=1.5.1 From 4d6ca714885080e797715e4c5a33619dc528abe2 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Sat, 22 Apr 2023 11:13:36 +0100 Subject: [PATCH 10/19] Update recipe/meta.yaml --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index e9df7db..e3fe22e 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -44,7 +44,7 @@ requirements: - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 # from PyPi only at the moment: - # requirements-detector >=1.0.3 + - requirements-detector >=1.0.3 # opened PR to bump version # github.com/conda-forge/requirements-detector-feedstock/pull/18 From c1fc59ade74625d91350bbeff187977e8958ea2b Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Tue, 25 Apr 2023 11:29:15 +0200 Subject: [PATCH 11/19] Update recipe/meta.yaml --- recipe/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index e3fe22e..b512478 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -43,7 +43,6 @@ requirements: - pyyaml - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 - # from PyPi only at the moment: - requirements-detector >=1.0.3 # opened PR to bump version # github.com/conda-forge/requirements-detector-feedstock/pull/18 From 4ebd85f83abcee0853eee3f046cf446e0a105685 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Tue, 25 Apr 2023 11:29:35 +0200 Subject: [PATCH 12/19] Update recipe/meta.yaml --- recipe/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index b512478..8778cae 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -44,7 +44,6 @@ requirements: - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 - requirements-detector >=1.0.3 - # opened PR to bump version # github.com/conda-forge/requirements-detector-feedstock/pull/18 run_constrained: From 883dc7161a87a03e24c5fadd348235fc103eef94 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Tue, 25 Apr 2023 11:29:57 +0200 Subject: [PATCH 13/19] Update recipe/meta.yaml --- recipe/meta.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 8778cae..0bd1c40 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -44,7 +44,6 @@ requirements: - setoptconf-tmp >=0.3.1,<0.4 - toml >=0.10.2,<0.11.0 - requirements-detector >=1.0.3 - # github.com/conda-forge/requirements-detector-feedstock/pull/18 run_constrained: - bandit >=1.5.1 From 7a9df4cd166fabf2e5a12ec99fea294510b137fb Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Tue, 9 May 2023 14:22:28 +0100 Subject: [PATCH 14/19] Update recipe/meta.yaml Co-authored-by: jakirkham --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 0bd1c40..5a0e456 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -27,7 +27,7 @@ requirements: - backports.zoneinfo # https://github.com/conda-forge/django-feedstock/issues/134 - dodgy >=0.2.1,<0.3.0 - flake8 <6.0.0 - - gitpython >=3.1.27 + - gitpython >=3.1.27,<4 - mccabe >=0.7.0,<0.8.0 - packaging - pep8-naming >=0.3.3,<=0.10.0 From c46b01f18941d6656540b4204ac432db9ad3894c Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Tue, 9 May 2023 14:22:54 +0100 Subject: [PATCH 15/19] Update recipe/meta.yaml Co-authored-by: jakirkham --- recipe/meta.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 5a0e456..47eaea6 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -53,7 +53,7 @@ requirements: test: requires: - - bandit >=1.5.1 + - bandit - vulture >=1.5 - mypy >=0.600 - pyroma >=2.4 From d1b2ce74379d23b700d9fb02afa83d06d2b953d9 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Tue, 9 May 2023 14:23:25 +0100 Subject: [PATCH 16/19] Update recipe/meta.yaml Co-authored-by: jakirkham --- recipe/meta.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 47eaea6..14a6122 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -54,9 +54,9 @@ requirements: test: requires: - bandit - - vulture >=1.5 - - mypy >=0.600 - - pyroma >=2.4 + - vulture + - mypy + - pyroma imports: - prospector - prospector.config From d85766912d0aef6a6675299e17ddfaf69dbb8784 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Tue, 9 May 2023 14:30:09 +0100 Subject: [PATCH 17/19] add myself to maintainers --- recipe/meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/recipe/meta.yaml b/recipe/meta.yaml index 14a6122..fb397d9 100644 --- a/recipe/meta.yaml +++ b/recipe/meta.yaml @@ -90,3 +90,4 @@ extra: recipe-maintainers: - anthchirp - jakirkham + - valeriupredoi From 23394a5a503730d3ab87a63775f3071a66586d25 Mon Sep 17 00:00:00 2001 From: Valeriu Predoi Date: Tue, 9 May 2023 14:31:18 +0100 Subject: [PATCH 18/19] add myself to gh repo owners --- .github/CODEOWNERS | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 9c7f497..7e58041 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @anthchirp @jakirkham \ No newline at end of file +* @anthchirp @jakirkham @valeriupredoi From cccf75d7f81cec89c853dba3d5ca3ab4cb0e6c53 Mon Sep 17 00:00:00 2001 From: "conda-forge-webservices[bot]" <91080706+conda-forge-webservices[bot]@users.noreply.github.com> Date: Tue, 9 May 2023 13:38:16 +0000 Subject: [PATCH 19/19] MNT: Re-rendered with conda-build 3.24.0, conda-smithy 3.23.1, and conda-forge-pinning 2023.05.08.17.24.41 --- .github/CODEOWNERS | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 7e58041..07f8b6f 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1 +1 @@ -* @anthchirp @jakirkham @valeriupredoi +* @anthchirp @jakirkham @valeriupredoi \ No newline at end of file diff --git a/README.md b/README.md index 1243dc7..2fdcf8e 100644 --- a/README.md +++ b/README.md @@ -149,4 +149,5 @@ Feedstock Maintainers * [@anthchirp](https://github.com/anthchirp/) * [@jakirkham](https://github.com/jakirkham/) +* [@valeriupredoi](https://github.com/valeriupredoi/)
All platforms: - - + +