Skip to content

[UPDATE] compatible with Keras V3 #10

[UPDATE] compatible with Keras V3

[UPDATE] compatible with Keras V3 #10

Workflow file for this run

name: Publish python package to PyPI
on:
push:
tags:
- V*
jobs:
build-n-publish:
name: Build and publish python package to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install and update build
run: python -m pip install --upgrade pip build
- name: Build package
run: python -m build
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true