setup.cfg: fix setuptools dash-separator warnings
Warnings like this: python3.9/site-packages/setuptools/dist.py:634: UserWarning: Usage of dash-separated 'upload-dir' will not be supported in future versions. Please use the underscore name 'upload_dir' instead
This commit is contained in:
parent
ef1308c23b
commit
8c350b9837
|
@ -77,12 +77,12 @@ _pytest = py.typed
|
||||||
pytest = py.typed
|
pytest = py.typed
|
||||||
|
|
||||||
[build_sphinx]
|
[build_sphinx]
|
||||||
source-dir = doc/en/
|
source_dir = doc/en/
|
||||||
build-dir = doc/build
|
build_dir = doc/build
|
||||||
all_files = 1
|
all_files = 1
|
||||||
|
|
||||||
[upload_sphinx]
|
[upload_sphinx]
|
||||||
upload-dir = doc/en/build/html
|
upload_dir = doc/en/build/html
|
||||||
|
|
||||||
[check-manifest]
|
[check-manifest]
|
||||||
ignore =
|
ignore =
|
||||||
|
|
Loading…
Reference in New Issue