Skip to content

Commit 94c01a5

Browse files
committed
update to otter 26
1 parent cf69202 commit 94c01a5

23 files changed

+661
-1355
lines changed

.python-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.11

.vscode/extensions.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"recommendations": [
33
"charliermarsh.ruff",
4+
"astral-sh.ty",
45
"ms-python.python",
56
"ms-python.vscode-pylance",
6-
"njpwerner.autodocstring",
77
"redhat.vscode-yaml",
88
],
99
}

.vscode/settings.json

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"editor.formatOnSave": true,
23
"[python]": {
34
"editor.defaultFormatter": "charliermarsh.ruff",
45
"editor.tabSize": 4,
@@ -9,17 +10,14 @@
910
"ruff.nativeServer": true,
1011
"ruff.lint.enable": true,
1112
"ruff.organizeImports": true,
12-
"python.analysis.autoImportCompletions": true,
13-
"python.analysis.typeCheckingMode": "standard",
14-
"python.languageServer": "Pylance",
13+
"python.languageServer": "None",
1514
"files.exclude": {
1615
"**/__pycache__": true,
1716
"**/.pytest_cache": true,
1817
"**/.ruff_cache": true,
1918
"*.egg-info": true,
2019
"build": true,
2120
},
22-
"autoDocstring.docstringFormat": "sphinx",
2321
"yaml.schemas": {
2422
"https://raw.githubusercontent.com/opentargets/otter/refs/heads/main/.vscode/config-schema.json": [
2523
"config.yaml"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
### HOUSEKEEPING TARGETS ###
2-
.PHONY: help clean
2+
.PHONY: help clean test
33

44
help: ## Show the help message
55
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-9s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)

0 commit comments

Comments
 (0)