Skip to content

Commit

Permalink
chore(deps): pin and update dependencies (#73)
Browse files Browse the repository at this point in the history
* chore(deps): pin and update dependencies
* chore(deps): update dependencies, use python 3.12 for github-workflows
* chore(deps): update dependencies, use >= for dependencies, use python 3.13.1
  • Loading branch information
joe128 authored Dec 11, 2024
1 parent 628ea80 commit 8da39b2
Show file tree
Hide file tree
Showing 6 changed files with 741 additions and 715 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,15 +73,15 @@ jobs:
with:
ref: ${{ fromJson(steps.get_pull_request_ref.outputs.data).head.ref }}

- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.13.1

- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
poetry-version: 1.8.4

- name: Install dependencies
run: poetry install --no-dev
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.13.1
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
poetry-version: 1.8.4
- name: Install dependencies
run: poetry install --no-dev
- name: Get Package Version
Expand All @@ -51,14 +51,14 @@ jobs:
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Set up Python 3.9
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.13.1
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
poetry-version: 1.8.4
- name: Install dependencies
run: poetry install --no-dev
- name: Get Package Version
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.13.1
- uses: pre-commit/[email protected]

unittest:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.11
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.11
python-version: 3.13.1
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.5.1
poetry-version: 1.8.4
- name: Install dependencies
run: poetry install --no-dev
- name: Run unit tests
Expand Down
4 changes: 2 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
rev: v4.0.1
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 22.3.0
rev: 24.10.0
hooks:
- id: black
exclude: ^dist/
Loading

0 comments on commit 8da39b2

Please sign in to comment.