-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into method_args
- Loading branch information
Showing
8 changed files
with
580 additions
and
714 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,37 +12,32 @@ jobs: | |
- name: Set up Python | ||
uses: actions/[email protected] | ||
with: | ||
python-version: 3.8 | ||
python-version: 3.9 | ||
|
||
- name: Install poetry | ||
run: make setup | ||
|
||
|
||
- name: Install poeblix for version freezing | ||
run: poetry self add poeblix@latest | ||
|
||
- name: Bump version | ||
run: | | ||
poetry version prerelease | ||
- name: Commit changes | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git add . | ||
git commit -m "Bump version" || echo "No changes to commit" | ||
|
||
- name: Update diagram | ||
uses: githubocto/repo-visualizer@main | ||
with: | ||
excluded_paths: "ignore,.github" | ||
should_push: false | ||
|
||
- name: Push changes | ||
run: git push | ||
|
||
- name: Build with lockfile versions | ||
run: poetry blixbuild --only-lock | ||
|
||
- name: Build and publish to pypi | ||
uses: JRubics/poetry-publish@v1.16 | ||
- name: Publish distribution 📦 to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
with: | ||
python_version: 3.8 | ||
pypi_token: ${{ secrets.PYPI_TOKEN }} | ||
allow_poetry_pre_release: "yes" | ||
ignore_dev_requirements: "yes" | ||
password: ${{ secrets.PYPI_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
__version__ = "0.0.2a25" | ||
__version__ = "0.0.2a29" | ||
|
||
from .utils.logging import _setup_logging | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.