Skip to content

Commit

Permalink
Bump pre-commit from 3.8.0 to 4.0.1 (#160)
Browse files Browse the repository at this point in the history
* Bump pre-commit from 3.8.0 to 4.0.1

Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.8.0 to 4.0.1.
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.8.0...v4.0.1)

---
updated-dependencies:
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix linter

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Yevhenii Semendiak <[email protected]>
  • Loading branch information
dependabot[bot] and YevheniiSemendiak authored Oct 24, 2024
1 parent fbe9210 commit 31bbc44
Show file tree
Hide file tree
Showing 5 changed files with 140 additions and 101 deletions.
121 changes: 25 additions & 96 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,118 +6,47 @@ on:
tags: [v*]
pull_request:
branches: [master]
pull_request_target:
branches: [master]

jobs:
lint:
if: |
(github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') ||
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]')
name: Linter
runs-on: ubuntu-latest
timeout-minutes: 5
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout commit
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Cache Python and its deps
uses: actions/cache@v4
with:
key: ${{ runner.os }}-python-3.11-${{ hashFiles('requirements/*.txt') }}
path: ${{ env.pythonLocation }}

- name: Cache pre-commit hooks
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-python-3.11-${{ hashFiles('.pre-commit-config.yaml') }}

- name: Install dependencies
run: |
python -m pip install -U pip
make setup
- name: Run linters
run: |
echo Linting ${{ github.event.pull_request.head.sha || github.sha }}
make lint
- name: Save the package version
id: version
run: |
echo "version=$(python setup.py --version)" >> $GITHUB_OUTPUT
test:
if: |
(github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') ||
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]')
name: Run test
name: All checks are passed
uses: ./.github/workflows/test.yaml

approve:
name: Approve bot PR
runs-on: ubuntu-latest
timeout-minutes: 15
if: endsWith(github.actor, '[bot]')
needs: test
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout commit
- name: Checkout
uses: actions/checkout@v4
- name: metadata
id: metadata
if: github.actor == 'dependabot[bot]'
uses: dependabot/fetch-metadata@v2
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Cache Python and its deps
uses: actions/cache@v4
with:
key: ${{ runner.os }}-python-3.11-${{ hashFiles('requirements/*.txt') }}
path: ${{ env.pythonLocation }}

- name: Cache pre-commit hooks
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-python-3.11-${{ hashFiles('.pre-commit-config.yaml') }}

- name: Install dependencies
run: |
python -m pip install -U pip
make setup
- name: Configure Neu.ro CLI
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for bot PRs
run: gh pr merge --auto --squash --delete-branch "$PR_URL"
env:
NEURO_TOKEN: ${{ secrets.COOKIECUTTER_TEST_E2E_TOKEN }}
NEURO_STAGING_URL: ${{ secrets.NEURO_STAGING_URL }}
run: |
apolo config login-with-token ${{ env.NEURO_TOKEN }} ${{ env.NEURO_STAGING_URL }}
apolo config switch-cluster onprem-poc
- name: Run tests
env:
WANDB_API_KEY: ${{ secrets.WANDB_API_KEY }}
run: |
make test
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

deploy:
name: Build and push Docker image
needs: [lint, test]
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout commit
uses: actions/checkout@v4

- name: Sanity check for tag and version
run: |
export VERSION=${{ needs.lint.outputs.version }}
export VERSION=${{ needs.test.outputs.version }}
if [ "${{ github.ref }}" != "refs/tags/v$VERSION" ]
then
echo "Git tag '${{ github.ref }}' differs from hard-coded package version 'v$VERSION'"
Expand All @@ -135,7 +64,7 @@ jobs:

- name: Build
env:
VERSION: ${{ needs.lint.outputs.version }}
VERSION: ${{ needs.test.outputs.version }}
COMMIT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
run: |
docker build \
Expand All @@ -145,6 +74,6 @@ jobs:
.
- name: Push
env:
VERSION: ${{ needs.lint.outputs.version }}
VERSION: ${{ needs.test.outputs.version }}
run: |
docker push ghcr.io/neuro-inc/wabucketref --all-tags
110 changes: 110 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,110 @@
on:
workflow_call:
outputs:
version:
description: Version
value: ${{ jobs.lint.outputs.version }}

jobs:
lint:
name: Linter
runs-on: ubuntu-latest
timeout-minutes: 5
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout commit
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Cache Python and its deps
uses: actions/cache@v4
with:
key: ${{ runner.os }}-python-3.11-${{ hashFiles('requirements/*.txt') }}
path: ${{ env.pythonLocation }}

- name: Cache pre-commit hooks
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-python-3.11-${{ hashFiles('.pre-commit-config.yaml') }}

- name: Install dependencies
run: |
python -m pip install -U pip
make setup
- name: Run linters
run: |
echo Linting ${{ github.event.pull_request.head.sha || github.sha }}
make lint
- name: Save the package version
id: version
run: |
echo "version=$(python setup.py --version)" >> $GITHUB_OUTPUT
test:
name: Run test
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Checkout commit
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.sha }}

- name: Setup Python 3.11
uses: actions/setup-python@v5
with:
python-version: "3.11"

- name: Cache Python and its deps
uses: actions/cache@v4
with:
key: ${{ runner.os }}-python-3.11-${{ hashFiles('requirements/*.txt') }}
path: ${{ env.pythonLocation }}

- name: Cache pre-commit hooks
uses: actions/cache@v4
with:
path: ~/.cache/pre-commit
key: ${{ runner.os }}-pre-commit-python-3.11-${{ hashFiles('.pre-commit-config.yaml') }}

- name: Install dependencies
run: |
python -m pip install -U pip
make setup
- name: Configure Neu.ro CLI
env:
NEURO_TOKEN: ${{ secrets.COOKIECUTTER_TEST_E2E_TOKEN }}
NEURO_STAGING_URL: ${{ secrets.NEURO_STAGING_URL }}
run: |
apolo config login-with-token ${{ env.NEURO_TOKEN }} ${{ env.NEURO_STAGING_URL }}
apolo config switch-cluster onprem-poc
- name: Run tests
env:
WANDB_API_KEY: ${{ secrets.WANDB_API_KEY }}
run: |
make test
check:
name: Check
needs:
- lint
- test
runs-on: ubuntu-latest
if: always()
steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9.19
3.11.6
2 changes: 1 addition & 1 deletion requirements/python-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-r python-base.txt

mypy==1.11.2
pre-commit==3.8.0
pre-commit==4.0.1
pytest==8.3.2
pytest-asyncio==0.24.0
towncrier==24.8.0
6 changes: 3 additions & 3 deletions wabucketref/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ def upload_artifact(
else:
logger.info(f"Uploading artifact {src_folder} as directory...")
artifact.add_dir(str(src_folder))
wandb.log_artifact(artifact, aliases=[artifact_alias]) # type: ignore
wandb.log_artifact(artifact, aliases=[artifact_alias])
self._set_apolo_flow_outputs(art_name, art_type, artifact_alias, suffix)
return artifact_alias

Expand Down Expand Up @@ -201,7 +201,7 @@ def download_artifact(
) -> Path:
self._apolo_init_if_needed()
self._wandb_init_if_needed()
artifact: wandb.Artifact = wandb.use_artifact( # type: ignore
artifact: wandb.Artifact = wandb.use_artifact(
artifact_or_name=f"{art_name}:{art_alias}", type=art_type
)
blob_uri = self._get_artifact_ref(artifact, art_name, art_type, art_alias)
Expand Down Expand Up @@ -345,6 +345,6 @@ def link(
uri=str(full_path),
checksum=False,
)
wandb.log_artifact(artifact, aliases=[artifact_alias]) # type: ignore
wandb.log_artifact(artifact, aliases=[artifact_alias])
self._set_apolo_flow_outputs(art_name, art_type, artifact_alias, suffix)
return artifact_alias

0 comments on commit 31bbc44

Please sign in to comment.