Skip to content

Commit 6a1d1de

Browse files
committed
ci(docs): update actions
1 parent 94e2918 commit 6a1d1de

File tree

3 files changed

+7
-16
lines changed

3 files changed

+7
-16
lines changed

.github/workflows/build-doc.yml

Lines changed: 5 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,22 +21,13 @@ jobs:
2121
python-version: 3.8.15
2222

2323
- 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
3627
3728
- 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
4031
4132
- name: Build Doc ✅
4233
run: |

pdf2dcm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
__version__ = "0.5.0"
1+
__version__ = "0.5.2"
22
from .pdf2encaps import Pdf2EncapsDCM # noqa
33
from .pdf2rgb import Pdf2RgbSC # noqa

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pdf2dcm"
3-
version = "0.5.0"
3+
version = "0.5.2"
44
description = "A PDF to Dicom Converter"
55
authors = ["Abhijeet Parida <[email protected]>"]
66
license = "MIT"

0 commit comments

Comments
 (0)