Skip to content

update to allow latest version of pydicom which changed read_file to … #11

update to allow latest version of pydicom which changed read_file to …

update to allow latest version of pydicom which changed read_file to … #11

Workflow file for this run

name: Publish Python Package
on:
push:
tags:
- 'v*' # Triggers the workflow on tag pushes that match the pattern v*
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4 # Update to the latest version
- name: Set up Python
uses: actions/setup-python@v5 # Update to the latest version
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python -m pip install --upgrade twine
python -m twine upload dist/*