Skip to content

Commit 278431e

Browse files
chore(deps): lock file maintenance (#10339)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Phillip Cloud <[email protected]>
1 parent b1cffee commit 278431e

11 files changed

+339
-334
lines changed

.github/workflows/check-generated-files.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
cache-dependency-path: requirements-dev.txt
4040

4141
- name: install poetry
42-
run: pip install 'poetry==1.8.3'
42+
run: pip install 'poetry==1.8.4'
4343

4444
- name: update apt-get
4545
run: sudo apt-get update -y -q

.github/workflows/ibis-backends-cloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ jobs:
107107
python-version: ${{ matrix.python-version }}
108108

109109
- name: install poetry
110-
run: pip install 'poetry==1.8.3'
110+
run: pip install 'poetry==1.8.4'
111111

112112
- name: install additional deps
113113
if: matrix.backend.key == 'snowpark'

.github/workflows/ibis-backends.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
python-version: ${{ matrix.python-version }}
6666

6767
- name: install poetry
68-
run: pip install 'poetry==1.8.3'
68+
run: pip install 'poetry==1.8.4'
6969

7070
- name: install ibis
7171
run: poetry install --without dev --without docs --extras bigquery
@@ -453,7 +453,7 @@ jobs:
453453
python-version: ${{ matrix.python-version }}
454454

455455
- name: install poetry
456-
run: pip install 'poetry==1.8.3'
456+
run: pip install 'poetry==1.8.4'
457457

458458
- name: install ibis
459459
run: poetry install --without dev --without docs --extras "${{ join(matrix.backend.extras, ' ') }} examples"
@@ -604,7 +604,7 @@ jobs:
604604
python-version: ${{ matrix.python-version }}
605605

606606
- name: install poetry
607-
run: python -m pip install --upgrade pip 'poetry==1.8.3'
607+
run: python -m pip install --upgrade pip 'poetry==1.8.4'
608608

609609
# these require a version of pandas that min versions are not compatible with
610610
- name: remove incompatible deps
@@ -707,7 +707,7 @@ jobs:
707707
python-version: ${{ matrix.python-version }}
708708

709709
- name: install poetry
710-
run: python -m pip install --upgrade pip 'poetry==1.8.3'
710+
run: python -m pip install --upgrade pip 'poetry==1.8.4'
711711

712712
# it requires a version of pandas that pyspark is not compatible with
713713
- name: remove lonboard

.github/workflows/ibis-benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
python-version: "3.11"
3131

3232
- name: install poetry
33-
run: pip install 'poetry==1.8.3'
33+
run: pip install 'poetry==1.8.4'
3434

3535
- name: install system dependencies
3636
run: sudo apt-get install -qq -y build-essential libgeos-dev freetds-dev unixodbc-dev

.github/workflows/ibis-main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
python-version: ${{ matrix.python-version }}
6464

6565
- name: install poetry
66-
run: pip install 'poetry==1.8.3'
66+
run: pip install 'poetry==1.8.4'
6767

6868
- name: install ${{ matrix.os }} system dependencies
6969
if: matrix.os == 'ubuntu-latest'
@@ -122,7 +122,7 @@ jobs:
122122
python-version: "3.12"
123123

124124
- name: install poetry
125-
run: pip install 'poetry==1.8.3'
125+
run: pip install 'poetry==1.8.4'
126126

127127
- name: install system dependencies
128128
run: |
@@ -159,7 +159,7 @@ jobs:
159159
python-version: "3.10"
160160

161161
- name: install poetry
162-
run: pip install 'poetry==1.8.3'
162+
run: pip install 'poetry==1.8.4'
163163

164164
- name: install ibis with all extras
165165
run: poetry install --without dev --without docs --all-extras

.github/workflows/pre-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
run: python -m pip install --upgrade pip
3434

3535
- name: install poetry
36-
run: python -m pip install 'poetry==1.8.3' poetry-dynamic-versioning
36+
run: python -m pip install 'poetry==1.8.4' poetry-dynamic-versioning
3737

3838
- name: compute ibis version
3939
id: get_version

docs/contribute/01_environment.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ For a better development experience see the `conda/mamba` or `nix` setup instruc
193193
1. Install development dependencies
194194

195195
```sh
196-
pip install 'poetry==1.8.3'
196+
pip install 'poetry==1.8.4'
197197
pip install -r requirements-dev.txt
198198
```
199199

flake.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

justfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ check-poetry:
1111
#!/usr/bin/env bash
1212
set -euo pipefail
1313

14-
required_version="1.8.3"
14+
required_version="1.8.4"
1515
version="$(poetry --version)"
1616
if ! grep -qF "${required_version}" <<< "${version}"; then
1717
>&2 echo "poetry version must be ${required_version}, got ${version}"

poetry.lock

Lines changed: 312 additions & 307 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

requirements-dev.txt

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)