Skip to content

[minor] Convert to pyproject.toml #11

[minor] Convert to pyproject.toml

[minor] Convert to pyproject.toml #11

Workflow file for this run

# Peek at the release pyproject.toml
name: Preview Release
on:
pull_request:
jobs:
preview:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/cached-miniforge@no_build_isolation
with:
python-version: '3.11'
env-files: .ci_support/environment.yml
- uses: pyiron/actions/update-pyproject-dependencies@main
with:
lower-bound-yaml: .ci_support/lower_bound.yml
semantic-upper-bound: minor
output-toml: preview.toml
pypi-to-conda-name-map-file: .ci_support/pypi_vs_conda_names.json
- name: Preview
shell: bash -l {0}
run: |
cat preview.toml
which pip
which python
- name: Build
shell: bash -l {0}
run: |
pip install versioneer[toml]==0.29
python setup.py sdist bdist_wheel