You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the request
The trend in Python packaging is to move away from setup.py toward pyproject.toml.
So Lasio's packaging should keep reasonably up-to-date on packaging practices and start to migrate toward pyproject.tom.
Expected behavior
Continue to package Laiso into an equivalent package as the one currently made with setup.py.
Software versions (please complete the following information):
Python version: [3.10]
Python distribution: Homebrew
lasio version (0.30)
Additional context
Current build cmd: python setup.py bdist_wheel --universal
displays this warning: .../python3.10/site-packages/setuptools/installer.py:27: SetuptoolsDeprecationWarning: setuptools.installer is deprecated. Requirements should be satisfied by a PEP 517 installer....
The text was updated successfully, but these errors were encountered:
I had to remove the test for Python 3.6 because it doesn't integrate with the newer versions of setuptools that support pyproject.toml. Given that and that Python 3.5 and 3.6 are considered end-of-life, I created issue End Lasio support for Python 3.5 and 3.6 ? #549 to discuss removing Lasio support for them.
Because of the current dynamic way that Lasio identifies the version, the setuptools_scm configuration had to stay in setup.py for now in-order to successfully build and test in the GitHub workflow.
Describe the request
The trend in Python packaging is to move away from setup.py toward pyproject.toml.
So Lasio's packaging should keep reasonably up-to-date on packaging practices and start to migrate toward pyproject.tom.
Expected behavior
Continue to package Laiso into an equivalent package as the one currently made with setup.py.
Software versions (please complete the following information):
Additional context
Current build cmd:
python setup.py bdist_wheel --universal
displays this warning:
.../python3.10/site-packages/setuptools/installer.py:27: SetuptoolsDeprecationWarning: setuptools.installer is deprecated. Requirements should be satisfied by a PEP 517 installer....
The text was updated successfully, but these errors were encountered: