Skip to content

Commit

Permalink
Merge pull request #52 from boschresearch/2.1
Browse files Browse the repository at this point in the history
2.1 release
  • Loading branch information
johannes-mueller authored Dec 8, 2023
2 parents 8cc8a82 + 7a7305a commit 2150c1c
Show file tree
Hide file tree
Showing 29 changed files with 896 additions and 447 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Documentation

on:
pull_request:
push:
branches:
- master
- develop

jobs:
build:
runs-on: ubuntu-latest
env:
MPLBACKEND: svg
PYDEVD_DISABLE_FILE_VALIDATION: 1
strategy:
fail-fast: false

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -U setuptools setuptools_scm wheel
pip install -e .[all,docs]
sudo apt-get install pandoc
- name: Build docs
run: sphinx-build -b html docs _build/html
1 change: 0 additions & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
runs-on: ${{ matrix.os }}
env:
MPLBACKEND: svg
PYTENSOR_FLAGS: cxx="",exception_verbosity=high
strategy:
fail-fast: false
matrix:
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@ In this file noteworthy changes of new releases of pyLife are documented since
2.0.0.


## since pylife-2.0.4

### New features

* History output for `odbclient`

* `WoehlerCurve.miner_original()`


### Breaking changes

* Non-destructive miner modifiers of `WoehlerCurve`

The methods `WoehlerCurve.miner_elementary()` and
`WoehlerCurve.miner_haibach()` now return modified copies of the original
WoehlerCurve object, rather than modifying the original.


## pylife-2.0.4

Minor bugfix release
Expand Down
301 changes: 0 additions & 301 deletions CODINGSTYLE.md

This file was deleted.

7 changes: 4 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,10 @@ the test coverage.

## Coding style

Please do consult the [CODINGSTYLE](CODINGSTYLE.md) file for codingstyle guide
lines. In order to have your contribution merged to main line following guide
lines should be met.
Please do consult the
[codingstyle](https://pylife.readthedocs.io/en/stable/CODINGSTYLE.html) file
for codingstyle guide lines. In order to have your contribution merged to main
line following guide lines should be met.

### Docstrings

Expand Down
Loading

0 comments on commit 2150c1c

Please sign in to comment.