-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Deprecate pydicom module, prep for release (#59)
- Loading branch information
1 parent
fdc6e98
commit bc205ea
Showing
15 changed files
with
123 additions
and
389 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Build package and deploy to PyPI | ||
|
||
on: | ||
release: | ||
types: [ published ] | ||
|
||
jobs: | ||
build_deploy: | ||
name: Build and deploy | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- uses: actions/setup-python@v2 | ||
name: Install Python | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install requirements | ||
|
||
run: | | ||
python -m pip install -U pip | ||
python -m pip install twine wheel | ||
- name: Build wheels and sdist | ||
run: | | ||
python setup.py sdist bdist_wheel | ||
- uses: actions/upload-artifact@v2 | ||
with: | ||
name: wheels | ||
path: ./dist | ||
|
||
- name: Publish package to PyPi | ||
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_PASSWORD }} |
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
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
.. _v1.2.0: | ||
|
||
1.2.0 | ||
===== | ||
|
||
* Added support for Python 3.9 | ||
* Removed standalone pydicom pixel data handler | ||
* ``The pylibjpeg.pydicom`` module is deprecated and will be removed in v2.0, | ||
use pydicom instead. | ||
* ``get_pixel_data_decoders`` moved from ``pylibjpeg.pydicom.utils`` to | ||
```pylibjpeg.utils`` |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
import re | ||
|
||
|
||
__version__ = '1.2.0.dev0' | ||
__version__ = '1.2.0' | ||
|
||
|
||
VERSION_PATTERN = r""" | ||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.