Skip to content

Commit addc460

Browse files
committed
Merge remote-tracking branch 'origin/main' into quex.remove_python_3_9
2 parents d2049dd + bb3d1bd commit addc460

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/test-install-scripts.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ jobs:
222222
if: ${{ matrix.distribution.type == 'arch' }}
223223
run: |
224224
pacman --noconfirm -Syu
225-
pacman --noconfirm -S base git sudo openssl-1.1
225+
pacman --noconfirm -S base git openssl-1.1
226226
# The behavior we follow in install.sh is unique with Arch in that
227227
# we leave it to the user to install the appropriate version of python,
228228
# so we need to install python here in order for the test to succeed.
@@ -234,7 +234,7 @@ jobs:
234234
DEBIAN_FRONTEND: noninteractive
235235
run: |
236236
apt-get --yes update
237-
apt-get install --yes git lsb-release sudo python3-venv
237+
apt-get install --yes git lsb-release python3-venv
238238
239239
- name: Prepare Fedora
240240
if: ${{ matrix.distribution.type == 'fedora' }}
@@ -254,7 +254,7 @@ jobs:
254254
DEBIAN_FRONTEND: noninteractive
255255
run: |
256256
apt-get --yes update
257-
apt-get install --yes git lsb-release sudo
257+
apt-get install --yes git lsb-release
258258
MINIMUM=3.10
259259
if ! apt-get satisfy --yes "python3-venv (>= ${MINIMUM})"
260260
then

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ requires-python = ">=3.10, <4"
66
authors = [
77
{name="Mariano Sorgente", email="[email protected]"}
88
]
9-
license = {text="Apache-2.0"}
9+
license = "Apache-2.0"
1010
readme = {file = "README.md", content-type = "text/markdown"}
1111
keywords= ["chia", "blockchain", "node"]
1212
homepage = "https://chia.net/"

requirements-poetry.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# presently dependabot uses 1.8.5 so let's stick with that for now
2-
poetry==2.1.1
1+
# keep this matching with what dependabot uses
2+
poetry==2.2.0
33
poetry-dynamic-versioning[plugin]
44
poetry-plugin-export

0 commit comments

Comments
 (0)