Skip to content

Commit 40fc52d

Browse files
committed
workflows and gitignore
1 parent d1136ec commit 40fc52d

File tree

5 files changed

+13
-12
lines changed

5 files changed

+13
-12
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [macos-latest, windows-latest]
18-
python: ['3.8', '3.9', '3.10']
18+
python: ["3.9", "3.10", "3.11"]
1919

2020
steps:
21-
- uses: compas-dev/compas-actions.build@v3
21+
- uses: compas-dev/compas-actions.build@v4
2222
with:
2323
invoke_lint: true
2424
check_import: true
2525
use_conda: true
26-
python: ${{ matrix.python }}
26+
python: ${{ matrix.python }}

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
branches:
66
- main
77
tags:
8-
- 'v*'
8+
- "v*"
99
pull_request:
1010
branches:
1111
- main
@@ -14,7 +14,7 @@ jobs:
1414
docs:
1515
runs-on: windows-latest
1616
steps:
17-
- uses: compas-dev/compas-actions.docs@v2
17+
- uses: compas-dev/compas-actions.docs@v3
1818
with:
1919
github_token: ${{ secrets.GITHUB_TOKEN }}
2020
use_conda: true

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
on:
22
push:
33
tags:
4-
- 'v*'
4+
- "v*"
55

66
name: Create Release
77

@@ -11,10 +11,10 @@ jobs:
1111
strategy:
1212
matrix:
1313
os: [macos-latest, windows-latest]
14-
python: ['3.8', '3.9', '3.10']
14+
python: ["3.9", "3.10", "3.11"]
1515

1616
steps:
17-
- uses: compas-dev/compas-actions.build@v3
17+
- uses: compas-dev/compas-actions.build@v4
1818
with:
1919
invoke_lint: true
2020
check_import: true
@@ -29,4 +29,4 @@ jobs:
2929
with:
3030
pypi_token: ${{ secrets.PYPI }}
3131
github_token: ${{ secrets.GITHUB_TOKEN }}
32-
bdist_wheel: false
32+
bdist_wheel: false

.gitignore

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,7 @@ ENV/
107107
*.3dmbak
108108
*.rhl
109109

110-
temp/**
111-
!temp/PLACEHOLDER
110+
temp
112111

113112
ext/**
114113
!ext/PLACEHOLDER
@@ -129,3 +128,6 @@ src/compas-viewers
129128
generated
130129

131130
*.gz
131+
132+
.pytest_cache
133+
.ruff_cache

temp/PLACEHOLDER

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)