-
Notifications
You must be signed in to change notification settings - Fork 91
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
install_with_constraints fails with the new poetry 1.1.0 #162
Comments
Thank you for reporting this, interesting. Can you provide more detail on how to reproduce this? I tried to reproduce this with the Dockerfile below, but hit a different error. ARG PYTHON_VERSION=3.8.6
FROM python:$PYTHON_VERSION
ARG POETRY_VERSION=1.1.0
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python
ENV PATH $PATH:/root/.poetry/bin
ARG NOX_VERSION=2020.8.22
RUN pip install nox==$NOX_VERSION
RUN git clone https://github.com/cjolowicz/hypermodern-python
WORKDIR /hypermodern-python
RUN nox --stop-on-first-error
In fact, I would advise you to raise your issue upstream. Bugs were still present in the export command as of 1.1.0rc1, so I guess there may be more rough edges left. |
python-poetry/poetry#3063. Not an issue with this repository code. Just to be aware of this if following atm. |
The upstream issue was fixed in Poetry 1.1.1 via python-poetry/poetry#3024 and python-poetry/poetry#3038. |
I just hit this error again:
I am using poetry v1.1.15 and pip v22.2.2. |
I think this is still a problem. See python-poetry/poetry-plugin-export#126 When you have dependencies such as
|
First of all big thanks for an excellent example for Python project tooling!
Have you also noticed this problem with latest poetry update?
poetry 1.1.0
nox 2020.8.22
It works fine if downgrading poetry to 1.0.5.
Strangely running below command directly i.e. not in nox session works with poetry 1.1.0.
The text was updated successfully, but these errors were encountered: