Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ readme = "README.md"
requires-python = ">=3.11,<3.14"
dynamic = ["version"]
dependencies = [
"fiona",
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

Removing fiona from the core dependencies without updating the code that uses it will cause the application to crash with an ImportError if fiona is not installed. Please add the necessary changes to the Python code to handle the optional import of fiona. This typically involves a try...except ImportError block where fiona is imported, and then gracefully disabling or providing an informative error for features that depend on it.

"geopandas",
"networkx",
"numpy",
Expand Down Expand Up @@ -38,6 +37,9 @@ types = [
"types-networkx",
"ty",
]
fiona = [
"fiona"
]


[tool.setuptools.package-data]
Expand Down
Loading