diff --git a/.cruft.json b/.cruft.json index ca5d8b2..e1c04e9 100644 --- a/.cruft.json +++ b/.cruft.json @@ -1,6 +1,6 @@ { "template": "https://github.com/iterative/cookiecutter-dvc-plugin", - "commit": "55dea263c00d5e174aed89451c29f6b7ef0f9577", + "commit": "33e1f4dcd401a09c3820d015ae773d60c9e4bd7b", "checkout": null, "context": { "cookiecutter": { diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index be21aaf..9fce569 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -15,12 +15,12 @@ jobs: id-token: write runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-python@v3 + - uses: actions/setup-python@v5 with: - python-version: 3.9 + python-version: 3.12 - name: Install run: | pip install --upgrade pip wheel diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index e9108be..b6dc5d1 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -26,16 +26,16 @@ jobs: pyv: ["3.9", "3.10", "3.11", "3.12"] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.pyv }} cache: 'pip' - cache-dependency-path: setup.cfg + cache-dependency-path: pyproject.toml - name: install run: | @@ -45,7 +45,7 @@ jobs: - name: lint timeout-minutes: 10 - uses: pre-commit/action@v3.0.0 + uses: pre-commit/action@v3.0.1 - name: run tests timeout-minutes: 15 diff --git a/.github/workflows/update-template.yaml b/.github/workflows/update-template.yaml index b238a4f..9fb299a 100644 --- a/.github/workflows/update-template.yaml +++ b/.github/workflows/update-template.yaml @@ -12,7 +12,7 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install deps run: pip install cruft - name: Update template diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index d5521bc..26c10bd 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -10,23 +10,23 @@ repos: files: \.rej$ repo: local - repo: https://github.com/astral-sh/ruff-pre-commit - rev: 'v0.2.0' + rev: 'v0.3.0' hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - id: ruff-format - repo: https://github.com/pre-commit/pre-commit-hooks - rev: v4.0.1 + rev: v4.5.0 hooks: - id: check-toml - id: check-yaml - hooks: - id: codespell - args: + args: - --ignore-words-list - ba,datas,fo,uptodate repo: https://github.com/codespell-project/codespell - rev: v2.1.0 + rev: v2.2.6 - repo: local hooks: - id: mypy @@ -35,11 +35,3 @@ repos: files: ^dvc_oss/ language: system types: [python] - - hooks: - - args: - - -i - - "2" - id: beautysh - language_version: python3 - repo: https://github.com/lovesegfault/beautysh - rev: v6.2.1 diff --git a/setup.py b/setup.py deleted file mode 100644 index 6068493..0000000 --- a/setup.py +++ /dev/null @@ -1,3 +0,0 @@ -from setuptools import setup - -setup()