-
Has anyone run into an issue with poetry not installing a Relevant AppVeyor Snippet Below (Full
install:
# Set Python paths based on environment variable from matrix
- cmd: set PATH=%PYTHON_WIN%/Scripts;%PYTHON_WIN%;%PATH%
- python --version
# Install pipx to manage CLI installations (poetry, codecov)
- python -m pip install pipx
# Manually set the path because "pipx ensurepath" needs a reload to apply
- cmd: set PATH=%USERPROFILE%\.local\bin;%PATH%
- sh: PATH=~/.local/bin:$PATH
# Install poetry and configure
- pipx install poetry
- poetry config virtualenvs.create true
- poetry config virtualenvs.in-project true
- poetry config --list
# Install project-specific dependencies and extras
- poetry install -E dev -E lint -E test -E commitizen_legacy
- poetry env list
- sh: ls -a I'm using Any help would be appreciated! I looked around on Google, SO, Github/poetry, and didn't find anyone having the same type of issues Update: I tried using the official method ( Other things I plan to try:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
FWIW, my latest AppVeyor file is working: https://github.com/KyleKing/calcipy/blob/07274ecba19f33dfceb299b9342a02f140a82320/appveyor.yml I'm using |
Beta Was this translation helpful? Give feedback.
FWIW, my latest AppVeyor file is working: https://github.com/KyleKing/calcipy/blob/07274ecba19f33dfceb299b9342a02f140a82320/appveyor.yml
I'm using
pyenv
rather than AppVeyor's native Python stack