-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
36 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,7 +8,7 @@ authors = [{name = "Lamin Labs", email = "[email protected]"}] | |
readme = "README.md" | ||
dynamic = ["version", "description"] | ||
dependencies = [ | ||
"lamindb[bionty,aws]", | ||
"lamindb[bionty]>=0.77.0", | ||
] | ||
|
||
[project.urls] | ||
|
@@ -31,7 +31,7 @@ testpaths = [ | |
[tool.ruff] | ||
src = ["src"] | ||
line-length = 88 | ||
select = [ | ||
lint.select = [ | ||
"F", # Errors detected by Pyflakes | ||
"E", # Error detected by Pycodestyle | ||
"W", # Warning detected by Pycodestyle | ||
|
@@ -48,7 +48,7 @@ select = [ | |
"PTH", # Use pathlib | ||
"S" # Security | ||
] | ||
ignore = [ | ||
lint.ignore = [ | ||
# Do not catch blind exception: `Exception` | ||
"BLE001", | ||
# Errors from function calls in argument defaults. These are fine when the result is immutable. | ||
|
@@ -119,10 +119,10 @@ ignore = [ | |
"S607", | ||
] | ||
|
||
[tool.ruff.pydocstyle] | ||
[tool.ruff.lint.pydocstyle] | ||
convention = "google" | ||
|
||
[tool.ruff.per-file-ignores] | ||
[tool.ruff.lint.per-file-ignores] | ||
"docs/*" = ["I"] | ||
"tests/**/*.py" = [ | ||
"D", # docstrings are allowed to look a bit off | ||
|