We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c473798 commit c5e2d88Copy full SHA for c5e2d88
2 files changed
.gitignore
@@ -10,6 +10,10 @@ __pycache__/
10
# C extensions
11
*.so
12
13
+# ruff cache
14
+.ruff_cache
15
+__ruff_logs__/
16
+
17
# Distribution / packaging
18
.Python
19
build/
pyproject.toml
@@ -10,7 +10,6 @@ dependencies = [
"numpy>=2.4.0",
"pandas>=2.3.3",
"plotly>=6.5.0",
- "pyzmq>=27.1.0",
"wigglystuff>=0.2.5",
]
@@ -19,4 +18,9 @@ dev = [
"ruff>=0.14.10",
20
21
22
-# ADD THE DESCRIPTION
+[tool.ruff]
+line-length = 100
23
+target-version = "py312"
24
25
+[tool.ruff.lint]
26
+ignore = ["T201"] # allows print statements
0 commit comments