Skip to content

Commit c509328

Browse files
committed
#16 Fix Poetry version
1 parent a2ed43a commit c509328

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "deshima-rawdata",
33
"image":"python:3.11",
4-
"onCreateCommand": "pip install poetry==1.6.1",
4+
"onCreateCommand": "pip install poetry==1.7.1",
55
"postCreateCommand": "poetry install",
66
"containerEnv": {
77
"POETRY_VIRTUALENVS_CREATE": "false"

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
with:
2525
python-version: ${{ matrix.python }}
2626
- name: Install project dependencies
27-
run: pip install poetry && poetry install
27+
run: pip install poetry==1.7.1 && poetry install
2828
- name: Test code's formatting (Black)
2929
run: black --check deshima_rawdata tests
3030
- name: Test code's typing (Pyright)

0 commit comments

Comments
 (0)