Skip to content

Commit

Permalink
Merge pull request #52 from matsui528/v0.2.10
Browse files Browse the repository at this point in the history
v0.2.10
  • Loading branch information
matsui528 authored Oct 26, 2023
2 parents 42e31f3 + 4c5f0e9 commit 9f92f55
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Publishing

on:
release:
types: [published]

jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
# retrieve your distributions here

- name: Checkout
uses: actions/checkout@v4

- name: Set up Python 3.x
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Install dependencies
# No need?
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Build package
run: |
python setup.py sdist
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
2 changes: 2 additions & 0 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Changelog
=============

See `releases <https://github.com/matsui528/rii/releases>`_ for the latest changes.

v0.2.9 (August 06, 2022)
----------------------------
- `#45 <https://github.com/matsui528/rii/pull/45>`_ Support for modern Windows CI (windows-2022). Support Python 3.9 and 3.10. Drop the support for Python 3.5.
Expand Down
2 changes: 1 addition & 1 deletion rii/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__all__ = ['Rii']
__version__ = '0.2.9'
__version__ = '0.2.10'

from .rii import Rii

0 comments on commit 9f92f55

Please sign in to comment.