File tree Expand file tree Collapse file tree 6 files changed +587
-150
lines changed
Expand file tree Collapse file tree 6 files changed +587
-150
lines changed Original file line number Diff line number Diff line change 88 build :
99 runs-on : ubuntu-latest
1010 steps :
11- - uses : actions/checkout@v2
12- - name : Set up Python
13- uses : actions/setup-python@v2.2.2
14- with :
15- python-version : 3.9
11+ - uses : actions/checkout@v2
12+ - name : Set up Python
13+ uses : actions/setup-python@v2.2.2
14+ with :
15+ python-version : 3.9
1616
17- - name : Install poetry
18- run : make setup
17+ - name : Install poetry
18+ run : make setup
1919
20- - name : Install poeblix for version freezing
21- run : poetry self add poeblix@latest
22-
23- - name : Bump version
24- run : |
25- poetry version prerelease
20+ - name : Bump version
21+ run : |
22+ poetry version prerelease
2623
27- - name : Commit changes
28- run : |
29- git config --local user.email "action@github.com"
30- git config --local user.name "GitHub Action"
31- git add .
32- git commit -m "Bump version" || echo "No changes to commit"
24+ - name : Commit changes
25+ run : |
26+ git config --local user.email "action@github.com"
27+ git config --local user.name "GitHub Action"
28+ git add .
29+ git commit -m "Bump version" || echo "No changes to commit"
3330
34- - name : Push changes
35- run : git push
31+ - name : Push changes
32+ run : git push
3633
37- - name : Build with lockfile versions
38- run : poetry blixbuild --only-lock
39-
40- - name : Publish distribution 📦 to PyPI
41- uses : pypa/gh-action-pypi-publish@release/v1
42- with :
43- password : ${{ secrets.PYPI_TOKEN }}
34+ - name : Build and publish to pypi
35+ uses : JRubics/ poetry-publish@v1.16
36+ with :
37+ python_version : 3.9
38+ pypi_token : ${{ secrets.PYPI_TOKEN }}
39+ allow_poetry_pre_release : " yes "
40+ ignore_dev_requirements : " yes "
Original file line number Diff line number Diff line change 1- __version__ = "1.0.1a5 "
1+ __version__ = "1.0.1a6 "
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ plugins:
3636 - mkdocstrings :
3737 handlers :
3838 python :
39- docstring_style : google
39+ # docstring_style: google
4040 options :
4141 # Removed the default filter that excludes private members (that is, members whose names start with a single underscore).
4242 filters : null
You can’t perform that action at this time.
0 commit comments