Skip to content

Commit

Permalink
Bump kittycad from 0.7.0 to 0.7.1 (#335)
Browse files Browse the repository at this point in the history
* Bump kittycad from 0.7.0 to 0.7.1

Bumps kittycad from 0.7.0 to 0.7.1.

---
updated-dependencies:
- dependency-name: kittycad
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* uv

Signed-off-by: Jess Frazelle <[email protected]>

* Updating script outputs

* use uv

Signed-off-by: Jess Frazelle <[email protected]>

* Updating script outputs

---------

Signed-off-by: dependabot[bot] <[email protected]>
Signed-off-by: Jess Frazelle <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jess Frazelle <[email protected]>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Oct 1, 2024
1 parent f355b12 commit 6e2b773
Show file tree
Hide file tree
Showing 6 changed files with 46 additions and 26 deletions.
20 changes: 14 additions & 6 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,10 +98,14 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
shell: bash
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
- name: Install deps
run: |
pip install -r requirements.txt
uv venv .venv
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
echo "$PWD/.venv/bin" >> $GITHUB_PATH
uv pip install -r requirements.txt
- name: Run scripts
shell: bash
Expand Down Expand Up @@ -198,10 +202,14 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
shell: bash
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
- name: Install deps
run: |
pip install -r requirements.txt
uv venv .venv
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
echo "$PWD/.venv/bin" >> $GITHUB_PATH
uv pip install -r requirements.txt
- name: remove previous outputs
shell: bash
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/mypy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,16 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5

# Installation instructions are from: https://python-poetry.org/docs/
- name: Install dependencies
shell: bash
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
- name: Install deps
run: |
pip install \
mypy
pip install -r requirements.txt
uv venv .venv
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
echo "$PWD/.venv/bin" >> $GITHUB_PATH
uv pip install \
mypy
uv pip install -r requirements.txt
- name: Run mypy
shell: bash
Expand Down
19 changes: 13 additions & 6 deletions .github/workflows/python-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,20 @@ jobs:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: format
shell: bash

- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
- name: Install deps
run: |
pip install isort ruff black
isort . */*/*.py
ruff format
ruff check --fix . */*/*.py
uv venv .venv
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
echo "$PWD/.venv/bin" >> $GITHUB_PATH
uv pip install \
isort \
ruff
isort . */*/*.py
ruff format
ruff check --fix . */*/*.py
- name: Check for modified files
id: git-check
Expand Down
14 changes: 8 additions & 6 deletions .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ jobs:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5

# Installation instructions are from: https://python-poetry.org/docs/
- name: Install dependencies
shell: bash
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v3
- name: Install deps
run: |
pip install \
ruff
uv venv .venv
echo "VIRTUAL_ENV=.venv" >> $GITHUB_ENV
echo "$PWD/.venv/bin" >> $GITHUB_PATH
uv pip install \
ruff
- name: Run ruff
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
kittycad==0.7.0
kittycad==0.7.1
2 changes: 1 addition & 1 deletion tutorials/conversion_obj_step/output.step
Git LFS file not shown

0 comments on commit 6e2b773

Please sign in to comment.