-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: update poetry & improve instructions (#19)
* fix: update poetry * fix: avoid warning in newer poetry version ``` Installing the current project: ds-user-guide (0.1.0) Warning: The current project could not be installed: No file/folder found for package ds-user-guide If you do not want to install the current project use --no-root. If you want to use Poetry only for dependency management but not for packaging, you can disable package mode by setting package-mode = false in your pyproject.toml file. In a future version of Poetry this warning will become an error! ``` * docs: improve instructions * docs(README): mention and link to Python versions * docs(README): clearer steps
- Loading branch information
1 parent
b03540e
commit 50c0e44
Showing
3 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ LABEL maintainer="TACC-ACI-WMA <[email protected]>" | |
ARG DEBIAN_FRONTEND=noninteractive | ||
|
||
# https://python-poetry.org/docs/configuration/#using-environment-variables | ||
ENV POETRY_VERSION=1.4.2 \ | ||
ENV POETRY_VERSION=1.8.2 \ | ||
POETRY_HOME="/opt/poetry" \ | ||
POETRY_VIRTUALENVS_IN_PROJECT=true \ | ||
POETRY_NO_INTERACTION=1 \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
name = "ds-user-guide" | ||
version = "0.1.0" | ||
description = "" | ||
package-mode = false | ||
authors = ["rstijerina <[email protected]>"] | ||
|
||
[tool.poetry.dependencies] | ||
|