File tree Expand file tree Collapse file tree 3 files changed +7
-16
lines changed Expand file tree Collapse file tree 3 files changed +7
-16
lines changed Original file line number Diff line number Diff line change @@ -21,22 +21,13 @@ jobs:
21
21
python-version : 3.8.15
22
22
23
23
- name : Poetry ✅
24
- uses : snok/install-poetry@v1
25
- with :
26
- virtualenvs-create : true
27
- virtualenvs-in-project : true
28
- installer-parallel : true
29
-
30
- - name : Load cached venv ❓
31
- id : cached-poetry-dependencies
32
- uses : actions/cache@v3
33
- with :
34
- path : .venv
35
- key : venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}
24
+ run : |
25
+ python -m pip install --upgrade pip
26
+ pip install poetry && poetry install
36
27
37
28
- name : Install dependencies ✅
38
- if : steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
39
- run : poetry install --no-interaction --no-root
29
+ run : |
30
+ poetry install --no-interaction --no-root
40
31
41
32
- name : Build Doc ✅
42
33
run : |
Original file line number Diff line number Diff line change 1
- __version__ = "0.5.0 "
1
+ __version__ = "0.5.2 "
2
2
from .pdf2encaps import Pdf2EncapsDCM # noqa
3
3
from .pdf2rgb import Pdf2RgbSC # noqa
Original file line number Diff line number Diff line change 1
1
[tool .poetry ]
2
2
name = " pdf2dcm"
3
- version = " 0.5.0 "
3
+ version = " 0.5.2 "
4
4
description = " A PDF to Dicom Converter"
5
5
authors = [
" Abhijeet Parida <[email protected] >" ]
6
6
license = " MIT"
You can’t perform that action at this time.
0 commit comments