New metrics, handlers and moved contrib handlers/metrics to ignite.handlers/metrics #11
Workflow file for this run
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
name: PyPI Stable Releases | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Miniconda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
miniconda-version: "latest" | |
python-version: "3.10" | |
- name: Install dependencies | |
shell: bash -l {0} | |
run: | | |
conda install -y pytorch torchvision cpuonly -c pytorch | |
pip install -r requirements-dev.txt | |
- name: Build and Publish PyPI binaries | |
shell: bash -l {0} | |
run: | | |
# workaround to fix https://github.com/pytorch/ignite/issues/2373 | |
pip uninstall -y twine pkginfo | |
pip install --upgrade --no-cache-dir twine 'pkginfo>=1.8.2' | |
python setup.py sdist bdist_wheel | |
twine --version | |
twine check dist/* | |
TWINE_USERNAME="${{ secrets.PYPI_USER }}" TWINE_PASSWORD="${{ secrets.PYPI_TOKEN }}" twine upload --verbose dist/* | |