Skip to content

Commit

Permalink
Update configuration and add python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
kmagusiak committed Jan 23, 2023
1 parent 57186f6 commit 5e3c77e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
strategy:
matrix:
# lowest, common (defaut ubuntu LTS), newest
python-version: ["3.8", "3.10"]
python-version: ["3.8", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
8 changes: 8 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
{
"python.formatting.blackArgs": [
"--skip-string-normalization",
"--line-length",
"100"
],
"python.formatting.provider": "black",
"python.linting.flake8Enabled": true,
"python.linting.mypyEnabled": true,
"python.testing.pytestArgs": [
"tests"
],
Expand Down

0 comments on commit 5e3c77e

Please sign in to comment.