Skip to content

Commit 0eb8cfe

Browse files
committed
repo upgrade
1 parent d310651 commit 0eb8cfe

File tree

16 files changed

+150
-281
lines changed

16 files changed

+150
-281
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 17 deletions
This file was deleted.

.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, ubuntu-latest]
18-
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
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
24-
check_import: true
24+
invoke_test: true
2525
use_conda: true
2626
python: ${{ matrix.python }}

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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@v4
1818
with:
1919
github_token: ${{ secrets.GITHUB_TOKEN }}
2020
use_conda: true

.github/workflows/release.yml

Lines changed: 7 additions & 7 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,21 +11,21 @@ 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@v2
17+
- uses: compas-dev/compas-actions.build@v4
1818
with:
19-
test_lint: true
20-
test_compas: true
19+
invoke_lint: true
20+
invoke_test: true
2121
use_conda: true
2222
python: ${{ matrix.python }}
2323

2424
Publish:
2525
needs: build
2626
runs-on: ubuntu-latest
2727
steps:
28-
- uses: compas-dev/compas-actions.publish@v2
28+
- uses: compas-dev/compas-actions.publish@v3
2929
with:
3030
pypi_token: ${{ secrets.PYPI }}
31-
github_token: ${{ secrets.GITHUB_TOKEN }}
31+
github_token: ${{ secrets.GITHUB_TOKEN }}

AUTHORS.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12+
* Added `compas_occ.brep.from_planes` as plugin for `compas.geometry.brep.from_planes`.
13+
1214
### Changed
1315

16+
* Fixed bug in `Brep.from_extrusion` by adding `cap_ends` parameter and by raising an exception when it is used :)
17+
* Fixed bug in `Brep.trim` by removing the part of the brep that is in front of the trim plane.
18+
1419
### Removed
1520

1621

CONTRIBUTING.md

Lines changed: 0 additions & 57 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2020-2021 Block Research Group - ETH Zurich
3+
Copyright (c) ETH Zurich - Block Research Group
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

Lines changed: 0 additions & 23 deletions
This file was deleted.

conftest.py

Lines changed: 0 additions & 36 deletions
This file was deleted.

0 commit comments

Comments
 (0)