Skip to content

Commit bbeaa19

Browse files
committed
Test deploy workflow
1 parent 98eef9b commit bbeaa19

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/publish-pypi-deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: publish-pypi-deploy
33
on:
44
release:
55
types: [ published ]
6+
push:
7+
branches: [main]
68

79
jobs:
810

@@ -21,8 +23,8 @@ jobs:
2123
- name: Build package
2224
run: |
2325
python -m pip install -U pip
24-
python -m pip install flit
25-
flit build
26+
python -m pip install build
27+
python -m build
2628
2729
- name: Upload artifacts
2830
if: ${{ success() }}

README.md

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
# types-pydicom
2-
Extended type hints for [pydicom's](https://github.com/pydicom/pydicom)
3-
Dataset element keywords.
2+
Extended type hints for [pydicom's](https://github.com/pydicom/pydicom) [Dataset](https://pydicom.github.io/pydicom/stable/reference/generated/pydicom.dataset.Dataset.html#pydicom.dataset.Dataset) element keywords.
43

54
## Installation
65
```bash
@@ -39,7 +38,5 @@ pip install -e .[dev]
3938

4039
### Updating
4140
```bash
42-
cd types-pydicom
43-
source env/env310/bin/activate
4441
python scripts/update_package.py
4542
```

0 commit comments

Comments
 (0)