dependence 1.2.5__tar.gz → 1.2.6__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dependence
3
- Version: 1.2.5
3
+ Version: 1.2.6
4
4
  Summary: A dependency management tool for python projects
5
5
  Project-URL: Documentation, https://dependence.enorganic.org
6
6
  Project-URL: Repository, https://github.com/enorganic/dependence
@@ -701,6 +701,8 @@ def _is_installed_requirement_string(item: Any) -> bool:
701
701
  requirement: Requirement = Requirement(item)
702
702
  except InvalidRequirement:
703
703
  return False
704
+ if not requirement.name:
705
+ return False
704
706
  return is_installed(requirement.name)
705
707
 
706
708
 
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
6
6
 
7
7
  [project]
8
8
  name = "dependence"
9
- version = "1.2.5"
9
+ version = "1.2.6"
10
10
  description = "A dependency management tool for python projects"
11
11
  readme = "README.md"
12
12
  license = "MIT"
File without changes
File without changes