EduardKononov / from-root

A Python package that helps you create paths relative to the project root
MIT License
15 stars 1 forks source link

file that does not comply with PEP 518 #3

Open dragonfly-net opened 5 months ago

dragonfly-net commented 5 months ago

ERROR: from-root==1.3.0 from ... has a pyproject.toml file that does not comply with PEP 518: 'build-system.requires' contains an invalid requirement: 'poetry=1.3.1'

requires = ["poetry=1.3.1"] must be requires = ["poetry==1.3.1"]

editorgit commented 5 months ago

use the standard comparison operators like ==, >=, <=, etc., when specifying version requirements.