1
0
Fork 0
mirror of https://github.com/ansible-collections/hetzner.hcloud.git synced 2026-02-03 23:51:48 +00:00

chore: split dev requirement from runtime requirements (#650)

##### SUMMARY

Some users seem to install their requirements using the file in the
repository. This ensures they do not install our dev dependencies.
This commit is contained in:
Jonas L. 2025-06-11 10:06:50 +02:00 committed by GitHub
parent 15829561f0
commit ef6a9389dc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 11 deletions

View file

@ -12,7 +12,7 @@ vendor-check:
venv:
python3 -m venv venv
venv/bin/pip install -r requirements.txt
venv/bin/pip install -r requirements.txt -r requirements-dev.txt
lint: venv
venv/bin/pylint plugins

9
requirements-dev.txt Normal file
View file

@ -0,0 +1,9 @@
ansible-core>=2.17
# Third party collections requirements
netaddr
cryptography
# Development requirements
pylint
antsibull-docs>=2.17,<2.18

View file

@ -1,12 +1,2 @@
ansible-core>=2.17
# Collections requirements
netaddr
cryptography
python-dateutil
requests
# Development requirements
pylint
antsibull-docs>=2.17,<2.18