Skip to content

Commit

Permalink
Update minimal used poetry version to 1.5.1
Browse files Browse the repository at this point in the history
The previous version was `1.3.2`.

Closes #4808

Signed-off-by: firelight flagboy <firelight.flagboy@gmail.com>
  • Loading branch information
FirelightFlagboy committed Jul 6, 2023
1 parent 7d6fae4 commit 31342ef
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

env:
python-version: 3.9
poetry-version: 1.3.2
poetry-version: 1.5.1
pytest-base-args: >-
--log-level=DEBUG
--durations=10
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-20.04
env:
python-version: 3.9
poetry-version: 1.3.2
poetry-version: 1.5.1
steps:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # pin v3.5.3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ concurrency:
env:
node-version: 18.12.0
python-version: 3.9
poetry-version: 1.3.2
poetry-version: 1.5.1
# Cargo will be faster with this configuration.
# It will only update it's index for the dependencies that we use.
# https://blog.rust-lang.org/2023/03/09/Rust-1.68.0.html#cargos-sparse-protocol
Expand Down
4 changes: 2 additions & 2 deletions docs/development/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ To start hacking, follow the basic steps detailed below:
pyenv install 3.9.10
```
5. [`poetry >=1.3.2`](https://python-poetry.org/docs/#installation)
5. [`poetry >=1.5.1`](https://python-poetry.org/docs/#installation)
Install Poetry (Does not require a specific version of Python)
```shell
curl --proto '=https' --tlsv1.2 -sSL https://install.python-poetry.org/ | python - --version=1.3.2
curl --proto '=https' --tlsv1.2 -sSL https://install.python-poetry.org/ | python - --version=1.5.1
```
To verify the installation of `poetry` run
Expand Down
2 changes: 1 addition & 1 deletion misc/version_updater.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class Tool(enum.Enum):
TOOLS_VERSION: Dict[Tool, str] = {
Tool.Rust: "1.68.0",
Tool.Python: "3.9.10",
Tool.Poetry: "1.3.2",
Tool.Poetry: "1.5.1",
Tool.Node: "18.12.0",
Tool.WasmPack: "0.11.0",
Tool.Parsec: "2.16.0-a.0+dev",
Expand Down
2 changes: 1 addition & 1 deletion server/packaging/server/in-docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export PATH="/root/.cargo/bin:$PATH"
cargo --version

# Install Poetry
curl -sSL https://install.python-poetry.org | python - --version=1.3.2
curl -sSL https://install.python-poetry.org | python - --version=1.5.1
export PATH="/root/.local/bin:$PATH"
poetry --version

Expand Down
2 changes: 1 addition & 1 deletion server/packaging/testbed-server/in-docker-build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export PATH="/root/.cargo/bin:$PATH"
cargo --version

# Install Poetry
curl -sSL https://install.python-poetry.org | python - --version=1.3.2
curl -sSL https://install.python-poetry.org | python - --version=1.5.1
export PATH="/root/.local/bin:$PATH"
poetry --version

Expand Down

0 comments on commit 31342ef

Please sign in to comment.