Skip to content

Commit 43813e4

Browse files
committed
fix: Use right python environment
Even despite adsf did activate python3.8. This was not used by poetry. python-poetry/poetry#655 In the Make target I've added a command which ensures that the right python version is used.
1 parent ca9ea2a commit 43813e4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Diff for: Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ publish:
1010
$(POETRY_RUN) pelican
1111

1212
venv:
13+
poetry env use $(shell which python3)
1314
poetry install
1415

1516
deploy: venv theme publish

Diff for: pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Therry van Neerven <[email protected]>"]
66
readme = "README.md"
77

88
[tool.poetry.dependencies]
9-
python = "^3.8"
9+
python = "^3.8.10"
1010
Markdown = "*"
1111
pelican = "*"
1212
markdown = "*"

0 commit comments

Comments
 (0)