-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): update poetry to v2.0.1 (#3060)
Updated poetry and the associated pyproject.toml and lock files to Poetry's new major version: 2.0.1 This major version introduced 1 major breaking change - `poetry shell` was replaced with `poetry env activate` but are not functionally the same. `poetry env activate` [only prints how to activate the shell](https://python-poetry.org/docs/managing-environments/#activating-the-environment). `poetry shell` was moved to its own [plugin](https://github.com/python-poetry/poetry-plugin-shell), which only adds the one extra installation step of: `poetry self add poetry-plugin-shell`. We decided that despite this being an extra dependency, it was a better solution than what was provided in the official [docs](https://github.com/python-poetry/poetry-plugin-shell): `eval $(poetry env activate)` for bash. CONTRIBUTING docs were also updated. Tested by running `make lint` (inside and outside the environment), and `make all-tests`. Closes #3056
- Loading branch information
Showing
22 changed files
with
1,105 additions
and
642 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
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
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 |
---|---|---|
|
@@ -24,7 +24,7 @@ COPY daemon.json /etc/docker/daemon.json | |
COPY install_go.sh /tmp/install_go.sh | ||
|
||
RUN "/tmp/install_go.sh" | ||
ENV PATH "$PATH:/root/.go/bin:/root/go/bin" | ||
ENV PATH "$PATH:/usr/local/go/bin" | ||
|
||
RUN go install -tags extended github.com/gohugoio/[email protected] | ||
|
||
|
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
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
Oops, something went wrong.