Skip to content

Commit

Permalink
importlib_metadata is a dependency on old Python versions (#2484)
Browse files Browse the repository at this point in the history
Fixing a related error on the conda-forge update for maturin builds
conda-forge/sourmash-minimal-feedstock#40
where `importlib_metadata` is missing due to not being declared as dependency
for old Python versions (pre-3.10)
  • Loading branch information
luizirber authored Feb 20, 2023
1 parent db16265 commit 60889af
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ dependencies = [
"deprecation>=2.0.6",
"cachetools>=4,<6",
"bitstring>=3.1.9,<5",
"importlib_metadata;python_version<'3.10'"
]

requires-python = ">=3.8"
Expand Down

0 comments on commit 60889af

Please sign in to comment.