Skip to content

Commit de10a6c

Browse files
bump versions for last 0.6 release (#68)
1 parent ad11e9c commit de10a6c

3 files changed

Lines changed: 41 additions & 44 deletions

File tree

.github/workflows/tests.yml

Lines changed: 39 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,44 @@
11
name: Run Tests
22

3-
on:
4-
push:
5-
branches: ["main"]
6-
pull_request:
7-
branches: ["*"]
8-
3+
on:
4+
push:
5+
branches: ["main"]
6+
pull_request:
7+
branches: ["*"]
8+
99
jobs:
10-
build:
11-
runs-on: ${{ matrix.os }}
12-
strategy:
13-
max-parallel: 4
14-
fail-fast: false
15-
matrix:
16-
version: ['4.5', '5.0', '5.1']
17-
os: [macos-latest, windows-latest, ubuntu-latest]
18-
steps:
19-
- uses: actions/checkout@v4
10+
build:
11+
runs-on: ${{ matrix.os }}
12+
strategy:
13+
max-parallel: 4
14+
fail-fast: false
15+
matrix:
16+
version: ["4.5", "5.0"]
17+
os: [macos-latest, windows-latest, ubuntu-latest]
18+
steps:
19+
- uses: actions/checkout@v4
20+
21+
- name: Install the latest version of uv
22+
uses: astral-sh/setup-uv@v4
23+
with:
24+
version: "latest"
25+
26+
- name: Install
27+
run: |
28+
uv sync --all-extras --dev
29+
uv pip install "bpy==${{ matrix.version }}.*" --extra-index-url https://bradyajohnston.github.io/dailybpy/ --index-strategy unsafe-best-match --prerelease=allow
30+
31+
- name: Run tests
32+
run: |
33+
uv run -m pytest -vv --cov=databpy --cov-report=xml
2034
21-
- name: Install the latest version of uv
22-
uses: astral-sh/setup-uv@v4
23-
with:
24-
version: "latest"
25-
26-
- name: Install
27-
run: |
28-
uv sync --all-extras --dev
29-
uv pip install "bpy==${{ matrix.version }}.*" --extra-index-url https://bradyajohnston.github.io/dailybpy/ --index-strategy unsafe-best-match --prerelease=allow
30-
31-
- name: Run tests
32-
run: |
33-
uv run -m pytest -vv --cov=databpy --cov-report=xml
34-
35-
- name: Upload coverage reports to Codecov
36-
uses: codecov/codecov-action@v5
37-
if: matrix.os == 'macos-latest' && matrix.version == '5.0'
38-
with:
39-
token: ${{ secrets.CODECOV_TOKEN }}
40-
name: coverage.xml
35+
- name: Upload coverage reports to Codecov
36+
uses: codecov/codecov-action@v5
37+
if: matrix.os == 'macos-latest' && matrix.version == '5.0'
38+
with:
39+
token: ${{ secrets.CODECOV_TOKEN }}
40+
name: coverage.xml
4141

42-
- name: Upload coverage reports to Codecov
43-
if: matrix.os == 'macos-latest' && matrix.version == '5.0'
44-
uses: codecov/codecov-action@v3
45-
42+
- name: Upload coverage reports to Codecov
43+
if: matrix.os == 'macos-latest' && matrix.version == '5.0'
44+
uses: codecov/codecov-action@v3

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "databpy"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
description = "A data-oriented wrapper library for the Blender Python API"
55
readme = "README.md"
66
dependencies = [
@@ -42,5 +42,3 @@ databpy = { workspace = true }
4242
dev = [
4343
"databpy",
4444
]
45-
46-

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)