Skip to content
This repository has been archived by the owner on Dec 18, 2024. It is now read-only.

Commit

Permalink
using 3.7 as default Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Aug 19, 2019
1 parent b7f7327 commit 07e9790
Show file tree
Hide file tree
Showing 5 changed files with 135 additions and 122 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"editor.rulers": [88],
"editor.wordWrapColumn": 88,
"python.pythonPath": "${workspaceFolder}\\.venv_tests\\Scripts\\python.exe",
"python.pythonPath": ".venv_tests\\Scripts\\python.exe",
"python.envFile": "${workspaceFolder}/dev.env",
"python.formatting.provider": "black",
"python.formatting.blackArgs": [
"--target-version=py36",
"--target-version=py37",
],
"python.linting.enabled": true,
"python.linting.flake8Enabled": true,
Expand Down
4 changes: 2 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"args": [
"-m",
"black",
"--target-version=py36",
"--target-version=py37",
"./modules"
],
"group": "build",
Expand All @@ -77,7 +77,7 @@
"args": [
"-m",
"black",
"--target-version=py36",
"--target-version=py37",
"./tests"
],
"group": "build",
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ qdarkstyle = "*"
semver = "*"

[requires]
python_version = "3.6"
python_version = "3.7"
Loading

0 comments on commit 07e9790

Please sign in to comment.