Skip to content

Commit 9428819

Browse files
Merge pull request #184 from automl/development
Release v0.5.2
2 parents 51abb4f + ea8ccf0 commit 9428819

3 files changed

Lines changed: 30 additions & 0 deletions

File tree

.github/workflows/publish.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,23 @@ jobs:
4040

4141
- name: Publish to PyPI
4242
uses: pypa/gh-action-pypi-publish@release/v1
43+
44+
github-release:
45+
needs: publish
46+
runs-on: ubuntu-latest
47+
permissions:
48+
contents: write
49+
steps:
50+
- uses: actions/checkout@v4
51+
52+
- name: Download dist artifacts
53+
uses: actions/download-artifact@v4
54+
with:
55+
name: dist
56+
path: dist/
57+
58+
- name: Create GitHub Release
59+
uses: softprops/action-gh-release@v2
60+
with:
61+
files: dist/*
62+
generate_release_notes: false

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# 0.5.2
2+
3+
### Documentation
4+
- DACBO benchmark documentation now builds without the optional `dacboenv` dependencies installed; `smac` and `omegaconf` are mocked during Sphinx autodoc.
5+
6+
### Infrastructure
7+
- GitHub release is now created automatically after a successful PyPI publish.
8+
19
# 0.5.1
210

311
### Documentation

docs/conf.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,6 @@
5050
"sphinx.ext.doctest",
5151
],
5252
}
53+
autodoc_mock_imports = ["smac", "omegaconf"]
54+
5355
automl_sphinx_theme.set_options(globals(), options)

0 commit comments

Comments
 (0)