Skip to content

Commit

Permalink
Merge pull request #329 from MC-kit/devel
Browse files Browse the repository at this point in the history
fix publish action
  • Loading branch information
dvp2015 authored Oct 29, 2024
2 parents ad939ba + e819f94 commit b986c44
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ jobs:
matrix:
# ubuntu-20.04 is required to build wheels for older OS (clusters...)
os: [ubuntu-20.04, ubuntu-latest, windows-latest]
python-version: ['3.10', '3.11', '3.12']
python-version: ['3.10', '3.11', '3.12', '3.13']
steps:
- name: Check out the repository
uses: actions/[email protected]
with:
fetch-depth: 1

- name: Checkout submodules
run: git submodule update --init --recursive --depth=1
submodules: 'true'

- name: Set up Python
uses: actions/[email protected]
Expand Down Expand Up @@ -61,7 +59,7 @@ jobs:
- name: Build sdist
run: poetry build -f sdist
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.11'
if: matrix.os == 'ubuntu-latest' && matrix.python-version == '3.13'

- name: Publish package for ${{ matrix.os }}, python ${{ matrix.python-version }}
run: poetry publish -u __token__ -p ${{ secrets.PYPI_TOKEN }}
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "mckit"
version = "0.8.2"
version = "0.8.3"
description = "Tools to process MCNP models and results"
authors = ["rrn <[email protected]>"]
maintainers = ["dpv2015 <[email protected]>"]
Expand Down

0 comments on commit b986c44

Please sign in to comment.