Skip to content

Commit

Permalink
chore(deps): bump nixpkgs and upgrade poetry to 1.8.2 (#8607)
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud authored Mar 9, 2024
1 parent b4c4369 commit 074b193
Show file tree
Hide file tree
Showing 10 changed files with 18 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-generated-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/checkout@v4

- name: install poetry
run: pipx install 'poetry==1.8.1'
run: pipx install 'poetry==1.8.2'

- name: install python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ibis-backends-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
github_token: ${{ steps.generate_token.outputs.token }}

- name: install poetry
run: pipx install 'poetry==1.8.1'
run: pipx install 'poetry==1.8.2'

- name: install python
uses: actions/setup-python@v5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ibis-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ jobs:
run: docker compose up --wait ${{ join(matrix.backend.services, ' ') }}

- name: install poetry
run: pipx install 'poetry==1.8.1'
run: pipx install 'poetry==1.8.2'

- name: install python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -507,7 +507,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: install poetry
run: python -m pip install --upgrade pip 'poetry==1.8.1'
run: python -m pip install --upgrade pip 'poetry==1.8.2'

- name: remove lonboard
# it requires a version of pandas that min versions are not compatible with
Expand Down Expand Up @@ -591,7 +591,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: install poetry
run: python -m pip install --upgrade pip 'poetry==1.8.1'
run: python -m pip install --upgrade pip 'poetry==1.8.2'

- name: remove lonboard
# it requires a version of pandas that pyspark is not compatible with
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ibis-benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
uses: actions/checkout@v4

- name: install poetry
run: pipx install 'poetry==1.8.1'
run: pipx install 'poetry==1.8.2'

- name: install python
uses: actions/setup-python@v5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ibis-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
uses: actions/checkout@v4

- name: install poetry
run: pipx install 'poetry==1.8.1'
run: pipx install 'poetry==1.8.2'

- name: install python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:
uses: actions/checkout@v4

- name: install poetry
run: pipx install 'poetry==1.8.1'
run: pipx install 'poetry==1.8.2'

- name: install python
uses: actions/setup-python@v5
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
uses: actions/checkout@v4

- name: install poetry
run: pipx install 'poetry==1.8.1'
run: pipx install 'poetry==1.8.2'

- name: install python
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: python -m pip install --upgrade pip

- name: install poetry
run: python -m pip install 'poetry==1.8.1' poetry-dynamic-versioning
run: python -m pip install 'poetry==1.8.2' poetry-dynamic-versioning

- name: compute ibis version
id: get_version
Expand Down
2 changes: 1 addition & 1 deletion docs/contribute/01_environment.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ For a better development experience see the `conda/mamba` or `nix` setup instruc
1. Install development dependencies

```sh
pip install 'poetry==1.8.1'
pip install 'poetry==1.8.2'
pip install -r requirements-dev.txt
```

Expand Down
6 changes: 3 additions & 3 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ clean:
# lock dependencies without updating existing versions
lock:
#!/usr/bin/env bash
required_version="1.8.1"
required_version="1.8.2"
version="$(poetry --version)"
if ! grep -qF "${required_version}" <<< "${version}"; then
>&2 echo "poetry version must be ${required_version}, got ${version}"
Expand Down
4 changes: 3 additions & 1 deletion poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 074b193

Please sign in to comment.