Skip to content

Commit

Permalink
test v0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
ww-rm committed Apr 1, 2024
1 parent 928750e commit f1580cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,12 @@ jobs:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}

deploy_whl:
deploy_whl_win:
strategy:
matrix:
os: [windows-latest]
py: ['3.8', '3.9', '3.10', '3.11', '3.12']

runs-on: ${{ matrix.os }}
runs-on: windows-latest

steps:
- uses: actions/checkout@v3
Expand All @@ -54,13 +53,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
pip install build twine
- name: Build package
run: python -m build -w
- name: Publish package
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
run: python -m twine upload -u __token__ -p ${{ secrets.PYPI_API_TOKEN }}


2 changes: 1 addition & 1 deletion src/gmalglib/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from . import sm3

__version__ = "0.1.2"
__version__ = "0.1.3"

0 comments on commit f1580cf

Please sign in to comment.