-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 7.0.0pre1 as 7.0.0, publish via GitHub Actions
- Loading branch information
1 parent
a06a2b4
commit 269d22a
Showing
3 changed files
with
25 additions
and
8 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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: "CI" | ||
on: ["push", "pull_request"] | ||
jobs: | ||
publish: | ||
name: "π¦ Publish Python distributions" | ||
if: "startsWith(github.ref, 'refs/tags')" | ||
runs-on: "ubuntu-latest" | ||
environment: "publish" | ||
permissions: | ||
id-token: write | ||
steps: | ||
- uses: "actions/checkout@master" | ||
- name: "π Set up Python ${{ matrix.python-version }}" | ||
uses: "actions/setup-python@v2" | ||
with: | ||
python-version: "3.12" | ||
- name: "π Display Python version" | ||
run: "python --version" | ||
- name: "π Install wheel" | ||
run: "python -m pip install wheel --user" | ||
- name: "π Build a binary wheel and a source tarball" | ||
run: "python setup.py sdist bdist_wheel" | ||
- name: "π¦ Publish package distributions to PyPI" | ||
uses: "pypa/gh-action-pypi-publish@release/v1" |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
|
||
setuptools.setup( | ||
name='riemann-client', | ||
version='7.0.0pre1', | ||
version='7.0.0', | ||
|
||
author="Sam Clements", | ||
author_email="[email protected]", | ||
|
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