use only pyproject configuration#1031
Conversation
d350171 to
ecb55fb
Compare
|
@tomkralidis - I checked out this branch and built locally. All runs fine, but the wheel is missing all the subpackages of owslib. Image on the left is the new wheel, on the right the latest on pypi:
I tried adding the following, but for some reason the #[tool.setuptools]
#packages = ["owslib"]
# find all subpackages automatically
[tool.setuptools.packages.find]
where = ["owslib"]Some related long discussions at pypa/setuptools#3346 - maybe this is fixed in newer setuptools? Have you run into it before? |
ecb55fb to
1649616
Compare
|
@geographika it turns out that |
|
fwiw, pining setuptools to |
See #1041 (thanks @geographika) for PR/update. @landryb let us know if that helps on OpenBSD? |
|
thanks, i had it locally patched out, |

This PR:
pyproject.tomlexclusively for project configurationsetup.pyand related artifactspyproject.tomlwe pinsetuptoolsto<69for Ubuntu 24.04 compatibilityThis PR also contains some test updates (note that the changes in
tests/test_wfs_generic.pyare due to the remote WFS service error'ing out on DescribeFeatureType requests only in WFS 1.0.0 mode; test is removed given we support WFS 1.1.0 and 2.0.0 proper).