Skip to content

Commit 9a57c11

Browse files
committed
Merge remote-tracking branch 'upstream/main'
Merging
2 parents 28fce25 + 8ffbdde commit 9a57c11

File tree

2 files changed

+15
-16
lines changed

2 files changed

+15
-16
lines changed

.vscode/settings.json

Lines changed: 14 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -233,20 +233,19 @@
233233
"中文",
234234
"日本語"
235235
],
236-
"flake8.args": [
237-
"--max-line-length=130",
238-
],
239236
"git.ignoreLimitWarning": true,
240-
"python.analysis.typeCheckingMode": "basic",
241237
"python.analysis.diagnosticMode": "workspace",
242-
"python.analysis.exclude": [
243-
"addon/globalPlugins/MathCAT/yaml",
244-
],
245-
"python.analysis.diagnosticSeverityOverrides": {
246-
"reportMissingImports": "none"
247-
},
248-
"triggerTaskOnSave.tasks": {
249-
"flake8-whole-project": ["**/*.*py"]
250-
},
251-
"cmake.configureOnOpen": false
252-
}
238+
"python.languageServer": "Pylance",
239+
240+
"python.defaultInterpreterPath": "${workspaceFolder}/.venv/bin/python",
241+
242+
"python.linting.enabled": true,
243+
"python.linting.ruffEnabled": true,
244+
"python.linting.ruffPath": "ruff",
245+
246+
"python.linting.pylintEnabled": false,
247+
"python.linting.flake8Enabled": false,
248+
"python.linting.mypyEnabled": false,
249+
250+
"cmake.configureOnOpen": false,
251+
}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ version = "0.22"
3131
features = ["extension-module", "abi3"]
3232

3333
[build-dependencies]
34-
zip = { version = "3.0", default-features = false, features = ["bzip2"] }
34+
zip = { version = "4.0", default-features = false, features = ["bzip2"] }
3535
mathcat = {version = "=0.6.9", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3636
# mathcat = { path = "../MathCAT/", features = ["include-zip"]} # for building, we want the zip files so we can include them separately
3737
# for testing MathCAT without having to publish a new version (change two occurrences)

0 commit comments

Comments
 (0)