Skip to content

Commit 4778070

Browse files
committed
Remove pipenv run from global taskfile var
1 parent 3097de0 commit 4778070

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ vars:
1313
INPUT_EXCLUDE: .*\{\{.*\}\}.*
1414
PYTHON_VERSION: 3.11
1515
VERSION:
16-
sh: pipenv run python -c 'from {{.PROJECT_SLUG}} import __version__; print(__version__)'
16+
sh: python -c 'from {{.PROJECT_SLUG}} import __version__; print(__version__)'
1717

1818
includes:
1919
py:

{{cookiecutter.project_name|replace(" ", "")}}/Taskfile.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ vars:
3030
PYTHON_VERSION: {{ cookiecutter.python_version }}
3131
SUPPORTED_PLATFORMS: 'linux/amd64,linux/arm64'
3232
VERSION:
33-
sh: pipenv run python -c 'from {{ "{{" }}.PROJECT_SLUG{{ "}}" }} import __version__; print(__version__)'
33+
sh: python -c 'from {{ "{{" }}.PROJECT_SLUG{{ "}}" }} import __version__; print(__version__)'
3434
LOCAL_PLATFORM:
3535
# Inspired by https://github.com/containerd/containerd/blob/e0912c068b131b33798ae45fd447a1624a6faf0a/platforms/database.go#L76
3636
sh: |

0 commit comments

Comments
 (0)