Skip to content

update to py 3.13 (#16) #12

update to py 3.13 (#16)

update to py 3.13 (#16) #12

Workflow file for this run

name: Publishing on pypi
on:
push:
tags:
- '*.*.*'
jobs:
Test_and_publish_on_conda:
strategy:
fail-fast: false
matrix:
python-version: ["3.13.1"]
poetry-version: ["1.2.0"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up python
id: setup-python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: ${{ matrix.poetry-version }}
virtualenvs-create: true
virtualenvs-in-project: true
- name: Publish
env:
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
poetry config pypi-token.pypi $PYPI_TOKEN
poetry publish --build