From b85bba5bb3ef23e16109a7d7896bbd06ce44d24e Mon Sep 17 00:00:00 2001 From: Pavel Zwerschke Date: Mon, 29 Jan 2024 13:42:54 +0100 Subject: [PATCH] migrate to copier template (#26) --- .copier-answers.yml | 7 +++++++ .github/dependabot.yml | 2 +- .github/workflows/autoupdate.yml | 12 ++++++------ .github/workflows/ci.yml | 3 ++- .github/workflows/keep-alive.yml | 11 +++++------ .pre-commit-hooks.yaml | 6 +++--- LICENSE.txt => LICENSE | 2 +- README.md | 13 ++++++------- 8 files changed, 31 insertions(+), 25 deletions(-) create mode 100644 .copier-answers.yml rename LICENSE.txt => LICENSE (98%) diff --git a/.copier-answers.yml b/.copier-answers.yml new file mode 100644 index 0000000..7406e62 --- /dev/null +++ b/.copier-answers.yml @@ -0,0 +1,7 @@ +# This file is managed by Copier; DO NOT EDIT OR REMOVE. +_commit: v0.1.4 +_src_path: git@github.com:quantco/copier-template-pre-commit-mirrors +description: Lint cython files +entry: cython-lint +tool: cython-lint +url: https://github.com/MarcoGorelli/cython-lint diff --git a/.github/dependabot.yml b/.github/dependabot.yml index a2a06ab..5a74cb9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -3,7 +3,7 @@ updates: - package-ecosystem: github-actions directory: / schedule: - interval: weekly + interval: monthly reviewers: - quantco/ci groups: diff --git a/.github/workflows/autoupdate.yml b/.github/workflows/autoupdate.yml index 30614d8..920451b 100644 --- a/.github/workflows/autoupdate.yml +++ b/.github/workflows/autoupdate.yml @@ -1,8 +1,9 @@ name: Autoupdate + on: workflow_dispatch: schedule: - - cron: "0 */6 * * *" + - cron: "0 0 * * 0" defaults: run: @@ -16,11 +17,10 @@ jobs: steps: - name: Checkout branch uses: actions/checkout@v4 - with: - ref: ${{ github.head_ref }} - name: Set up Conda env - uses: mamba-org/provision-with-micromamba@3c96c0c27676490c63c18bc81f5c51895ac3e0e6 + uses: mamba-org/setup-micromamba@8767fb704bd78032e9392f0386bf46950bdd1194 with: + environment-file: environment.yml environment-name: check-env - name: Find latest version id: versions @@ -31,8 +31,8 @@ jobs: new_version=$(micromamba list -n check-env "$pkgname" --json | jq -r '.[0].version') if [[ "$new_version" != "$old_version" ]]; then sed -i "s/$old_version/$new_version/g" environment.yml - echo "pkgname=$pkgname" >> "$GITHUB_OUTPUT" - echo "new-version=$new_version" >> "$GITHUB_OUTPUT" + echo "pkgname=$pkgname" >> $GITHUB_OUTPUT + echo "new-version=$new_version" >> $GITHUB_OUTPUT fi - uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 if: steps.versions.outputs.pkgname diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cd881a1..a2d7155 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,7 @@ jobs: with: ref: ${{ github.head_ref }} - name: Set up Conda env - uses: mamba-org/provision-with-micromamba@3c96c0c27676490c63c18bc81f5c51895ac3e0e6 + uses: mamba-org/setup-micromamba@8767fb704bd78032e9392f0386bf46950bdd1194 with: + environment-file: environment.yml environment-name: test-env diff --git a/.github/workflows/keep-alive.yml b/.github/workflows/keep-alive.yml index b6d789e..d36d27e 100644 --- a/.github/workflows/keep-alive.yml +++ b/.github/workflows/keep-alive.yml @@ -1,8 +1,7 @@ name: Keep on: - # pull_request: schedule: - - cron: "0 6 * * SUN" # Once weekly on Sunday @ 0600 UTC + - cron: 0 6 * * SUN jobs: keep-alive: @@ -10,9 +9,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: gautamkrishnar/keepalive-workflow@60b13c92aeda855e493b83aaf482c25da7e0043b + - uses: gautamkrishnar/keepalive-workflow@5b3128727d02fe1a892d0a2987517c9ec8ca7425 with: - commit_message: "Ah ah ah, stayin' alive" + commit_message: Ah ah ah, stayin' alive committer_username: ForrestQuant - committer_email: "forrestquant@users.noreply.github.com" - time_elapsed: 50 # days + committer_email: forrestquant@users.noreply.github.com + time_elapsed: 50 # days diff --git a/.pre-commit-hooks.yaml b/.pre-commit-hooks.yaml index 1bdce49..8f03851 100644 --- a/.pre-commit-hooks.yaml +++ b/.pre-commit-hooks.yaml @@ -1,13 +1,13 @@ - id: cython-lint-conda name: cython-lint-conda - description: Lint Cython files + description: 'Lint cython files' entry: cython-lint language: conda require_serial: true types: [cython] - id: double-quote-cython-strings-conda name: double-quote Cython strings-conda - description: replaces single-quoted strings with double-quoted strings. + description: 'Replace single-quoted strings with double-quoted strings.' entry: double-quote-cython-strings language: conda - types: [cython] \ No newline at end of file + types: [cython] diff --git a/LICENSE.txt b/LICENSE similarity index 98% rename from LICENSE.txt rename to LICENSE index dbb4f4b..1f66540 100644 --- a/LICENSE.txt +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2023 QuantCo, Inc. +Copyright 2024 QuantCo, Inc. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: diff --git a/README.md b/README.md index bc9b04c..965bb28 100644 --- a/README.md +++ b/README.md @@ -1,19 +1,18 @@ -cython-lint(-conda) mirror -==================== +# cython-lint mirror Mirror of cython-lint for pre-commit with conda as a language. -For pre-commit: see https://github.com/pre-commit/pre-commit -For cython-lint: see https://github.com/MarcoGorelli/cython-lint +For pre-commit: see [here](https://github.com/pre-commit/pre-commit) -### Using cython-lint with pre-commit and conda: +For cython-lint: see [here](https://github.com/MarcoGorelli/cython-lint) + +## Using cython-lint with pre-commit and conda: Add this to your `.pre-commit-config.yaml` ```yaml - - repo: https://github.com/Quantco/pre-commit-mirrors-cython-lint + - repo: https://github.com/quantco/pre-commit-mirrors-cython-lint rev: '' # Use the sha / tag you want to point at hooks: - id: cython-lint-conda ``` -