forked from rorni/mckit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #329 from MC-kit/devel
fix publish action
- Loading branch information
Showing
2 changed files
with
4 additions
and
6 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 |
---|---|---|
|
@@ -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] | ||
|
@@ -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 }} |
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,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]>"] | ||
|