Skip to content

Commit 66b5355

Browse files
committed
test: Pin importlib-metadata for Python 3.9
1 parent 59388e5 commit 66b5355

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ concurrency:
1414
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
1515

1616
env:
17-
POETRY_VERSION: "2.1.4"
17+
POETRY_VERSION: "2.2.1"
1818
POETRY_VIRTUALENVS_CREATE: true
1919
POETRY_VIRTUALENVS_IN_PROJECT: true
2020
POETRY_INSTALLER_PARALLEL: true
@@ -171,6 +171,10 @@ jobs:
171171
with:
172172
python-version: ${{ matrix.python-version }}
173173

174+
- name: Constrain importlib-metadata for Python 3.9
175+
if: matrix.python-version == '3.9'
176+
run: pip install 'importlib-metadata<8.7'
177+
174178
- name: Install Poetry
175179
uses: snok/install-poetry@76e04a911780d5b312d89783f7b1cd627778900a # v1
176180
with:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ license-check = [
212212
]
213213

214214
[tool.poetry]
215-
requires-poetry = ">=2.1"
215+
requires-poetry = ">=2.2"
216216
packages = [
217217
{include = "deepnote_toolkit"},
218218
{include = "deepnote_core"},

0 commit comments

Comments
 (0)