From 339cb9e99324cee8bbf29e4a4210a238c2b059a8 Mon Sep 17 00:00:00 2001 From: dvp Date: Mon, 28 Oct 2024 18:46:25 +0300 Subject: [PATCH 1/2] bump: version mckit 0.8.3a0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 57419bf7..0414918b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mckit" -version = "0.8.2" +version = "0.8.3a0" description = "Tools to process MCNP models and results" authors = ["rrn "] maintainers = ["dpv2015 "] From e819f94a5f52eaf0bc801dd719336498a49dc8b6 Mon Sep 17 00:00:00 2001 From: dvp Date: Tue, 29 Oct 2024 16:08:12 +0300 Subject: [PATCH 2/2] ci: add python3.13 wheel publishing --- .github/workflows/publish.yml | 8 +++----- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 401ee2a7..b6a02ce9 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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/checkout@v4.1.2 with: fetch-depth: 1 - - - name: Checkout submodules - run: git submodule update --init --recursive --depth=1 + submodules: 'true' - name: Set up Python uses: actions/setup-python@v5.1.0 @@ -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 }} diff --git a/pyproject.toml b/pyproject.toml index 0414918b..010ca836 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mckit" -version = "0.8.3a0" +version = "0.8.3" description = "Tools to process MCNP models and results" authors = ["rrn "] maintainers = ["dpv2015 "]