-
Notifications
You must be signed in to change notification settings - Fork 106
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
Fix/poetry installer #97
base: master
Are you sure you want to change the base?
Conversation
kaieslamiri
commented
Oct 3, 2022
- fixed poetry installer
- fixed helper to make mypy execute correctly
- style - readme formatting.
- bumped version.
related issue : #95 |
pyproject.toml
Outdated
@@ -9,7 +9,7 @@ license = "MIT" | |||
name = "manage-fastapi" | |||
readme = "README.md" | |||
repository = "https://github.com/ycd/manage-fastapi" | |||
version = "1.1.1" | |||
version = "1.1.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll bump later...
version = "1.1.2" | |
version = "1.1.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
will be reverted
poetry.lock
Outdated
typed-ast = [] | ||
typer = [] | ||
typing-extensions = [] | ||
urllib3 = [] | ||
virtualenv = [] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The hashes are being removed here... Do you have poetry <1.2 locally?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes: Poetry version 1.1.10
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
well have reverted it for now... will look deeper into it later
@Kludex, is it mergeable now ? |
@@ -4,7 +4,7 @@ ENV PYTHONPATH "${PYTHONPATH}:/" | |||
ENV PORT=8000 | |||
{% if cookiecutter.packaging == "poetry" %} | |||
# Install Poetry | |||
RUN curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | POETRY_HOME=/opt/poetry python && \ | |||
RUN curl -sSL https://install.python-poetry.org | POETRY_HOME=/opt/poetry python && \ | |||
cd /usr/local/bin && \ | |||
ln -s /opt/poetry/bin/poetry && \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
New installer changes the way Poetry is installed (it's similar to how pipx does it), so this probably won't work as intended
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean on new Apple chips also ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The installer is cross-platform