Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiefGokhlayeh committed Apr 26, 2023
1 parent 7f33cf7 commit 6cd83c7
Show file tree
Hide file tree
Showing 5 changed files with 286 additions and 381 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
curl \
&& rm -rf /var/lib/apt/lists/*

ARG POETRY_VERSION=1.1.11
ARG POETRY_VERSION=1.4
RUN pip3 install \
"poetry==${POETRY_VERSION}"
44 changes: 24 additions & 20 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,34 @@
"dockerfile": "Dockerfile",
"context": "..",
"args": {
"VARIANT": "3.9",
"POETRY_VERSION": "1.1.11",
"VARIANT": "3.10",
"POETRY_VERSION": "1.4",
},
},

"settings": {
"python.defaultInterpreterPath": ".venv/bin/python",
"python.formatting.blackPath": ".venv/bin/black",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": ".venv/bin/flake8",
"python.linting.pylintEnabled": false,
},
"customizations": {
"vscode": {
"settings": {
"python.defaultInterpreterPath": ".venv/bin/python",
"python.formatting.blackPath": ".venv/bin/black",
"python.formatting.provider": "black",
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
"python.linting.flake8Path": ".venv/bin/flake8",
"python.linting.pylintEnabled": false,
},

"extensions": [
"bungcip.better-toml",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.cpptools-extension-pack",
"njpwerner.autodocstring",
],
"extensions": [
"bungcip.better-toml",
"davidanson.vscode-markdownlint",
"esbenp.prettier-vscode",
"ms-python.python",
"ms-python.vscode-pylance",
"ms-vscode.cpptools-extension-pack",
"njpwerner.autodocstring",
],
},
},

"postCreateCommand": "poetry install --no-root && poetry run pre-commit install",

Expand Down
12 changes: 6 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
rev: v4.4.0
hooks:
- id: check-added-large-files
- id: check-merge-conflict
Expand All @@ -11,15 +11,15 @@ repos:
- id: forbid-new-submodules
- id: trailing-whitespace
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.30.0
rev: v0.33.0
hooks:
- id: markdownlint
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: v13.0.0
rev: v16.0.2
hooks:
- id: clang-format
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.4.1
rev: v3.0.0-alpha.9-for-vscode
hooks:
- id: prettier
args:
Expand All @@ -32,12 +32,12 @@ repos:
hooks:
- id: dockerfilelint
- repo: https://github.com/psf/black
rev: 21.11b1
rev: 23.3.0
hooks:
- id: black
language_version: python3.9
- repo: https://github.com/PyCQA/flake8
rev: 4.0.1
rev: 6.0.0
hooks:
- id: flake8
- repo: meta
Expand Down
Loading

0 comments on commit 6cd83c7

Please sign in to comment.