naojsoft / qplan

Other
2 stars 4 forks source link

fix typo in pyproject.toml #32

Closed monodera closed 1 year ago

monodera commented 1 year ago

Fix a minor typo in pyproject.toml. Minor formatting was made, but I believe this shouldn't matter for this case.

ejeschke commented 1 year ago

@monodera, what is the typo? The install seems to work ok with miniconda...

monodera commented 1 year ago

In the original file, the dependency to setuptools is written as "setuptools>=>=45" with repeated >=. I've just removed one >=. I guess that conda does not look at pyproject.toml.

ejeschke commented 1 year ago

Thanks, @monodera. pip is used to install, but somehow installation was still working with the typo. At least as far as I could tell.

monodera commented 1 year ago

I've not yet been able to figure it out, but pip may prioritize setup.py and setup.cfg.

I'm currently using a package manager such as pdm, poetry, and rye and it seems that they use pyproject.toml over setup.py.