ci: add wheel to dev dependencies for setup.py bdist_wheel command to work

This commit is contained in:
Rémi Alvergnat
2023-12-13 09:42:44 +01:00
parent 0cfb12feb1
commit a49278dd9a
+1 -1
View File
@@ -17,7 +17,7 @@ with io.open(os.path.join(here, 'CHANGELOG.md'), encoding='utf-8') as f:
install_requires = ['rebulk>=3.2.0', 'babelfish>=0.6.0', 'python-dateutil', 'importlib-resources;python_version<"3.9"']
dev_require = ['tox', 'mkdocs', 'mkdocs-material', 'pyinstaller', 'python-semantic-release']
dev_require = ['tox', 'mkdocs', 'mkdocs-material', 'pyinstaller', 'python-semantic-release', 'wheel']
tests_require = ['pytest', 'pytest-mock', 'pytest-benchmark', 'pytest-cov', 'pylint', 'PyYAML']