We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2ed43a commit c509328Copy full SHA for c509328
2 files changed
.devcontainer/devcontainer.json
@@ -1,7 +1,7 @@
1
{
2
"name": "deshima-rawdata",
3
"image":"python:3.11",
4
- "onCreateCommand": "pip install poetry==1.6.1",
+ "onCreateCommand": "pip install poetry==1.7.1",
5
"postCreateCommand": "poetry install",
6
"containerEnv": {
7
"POETRY_VIRTUALENVS_CREATE": "false"
.github/workflows/tests.yaml
@@ -24,7 +24,7 @@ jobs:
24
with:
25
python-version: ${{ matrix.python }}
26
- name: Install project dependencies
27
- run: pip install poetry && poetry install
+ run: pip install poetry==1.7.1 && poetry install
28
- name: Test code's formatting (Black)
29
run: black --check deshima_rawdata tests
30
- name: Test code's typing (Pyright)
0 commit comments