Skip to content

Commit

Permalink
poetry 1.8.2 with python 3.12.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hemnstill committed Mar 28, 2024
1 parent 3c01be3 commit 0aca8e4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
uses: ./.github/workflows/release.yml
with:
workflow: ${{ github.workflow }}
tool_version: '1.7.1'
tool_version: '1.8.2'
prepare_body: |
bsdtar -Oxf ./build-gnu/build-gnu.tar.gz build-gnu.md >> body.md
bsdtar -Oxf ./build-msvc/build-msvc.tar.gz build-msvc.md >> body.md
Expand Down
4 changes: 2 additions & 2 deletions poetry/build_gnu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ apt update
apt install -y wget binutils

tool_name="poetry"
tool_version="1.7.1"
python_self_name="python-3.12.1"
tool_version="1.8.2"
python_self_name="python-3.12.2"
self_name="$tool_name-$tool_version"
self_toolset_name="build-gnu"
release_version_dirpath="$dp0/release/$self_name"
Expand Down
4 changes: 2 additions & 2 deletions poetry/build_msvc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ dp0="$(realpath "$(dirname "$0")")"
set -e

tool_name="poetry"
tool_version="1.7.1"
python_self_name="python-3.12.1"
tool_version="1.8.2"
python_self_name="python-3.12.2"
self_name="$tool_name-$tool_version"
self_toolset_name="build-msvc"
release_version_dirpath="$dp0/release/$self_name"
Expand Down
4 changes: 2 additions & 2 deletions poetry/test_linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "3.12.1"
python = "3.12.2"
requests = "2.28.2"
mysqlclient = "2.2.1"
Expand All @@ -42,7 +42,7 @@ Package operations: 6 installs, 0 updates, 0 removals
Writing lock file'

test_version() {
assertEquals "Poetry (version 1.7.1)" "$(../bin/poetry.sh --version)"
assertEquals "Poetry (version 1.8.2)" "$(../bin/poetry.sh --version)"
}

test_version_plugins() {
Expand Down
4 changes: 2 additions & 2 deletions poetry/test_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors = []
readme = "README.md"
[tool.poetry.dependencies]
python = "3.12.1"
python = "3.12.2"
requests = "2.28.2"
mysqlclient = "2.2.1"
Expand All @@ -30,7 +30,7 @@ Package operations: 6 installs, 0 updates, 0 removals
'

test_version() {
assertEquals "Poetry (version 1.7.1)" "$(../bin/poetry.bat --version)"
assertEquals "Poetry (version 1.8.2)" "$(../bin/poetry.bat --version)"
}

test_install_from_path() {
Expand Down

0 comments on commit 0aca8e4

Please sign in to comment.