mirror of
https://github.com/ansible/awx.git
synced 2026-01-27 00:21:30 -03:30
- Move kubernetes from git-based install to PyPI (v35.0.0 now available) - Remove urllib3 cap comment since kubernetes 35.0.0 no longer restricts it - Update README.md upgrade blocker documentation
25 lines
1.3 KiB
Plaintext
25 lines
1.3 KiB
Plaintext
# Git-based requirements - installed separately from requirements.txt
|
|
#
|
|
# IMPORTANT: Use PEP 440 format that matches pip-compile's normalized output:
|
|
# name @ git+https://github.com/org/repo.git@branch
|
|
#
|
|
# Format rules:
|
|
# - Package name MUST match pip's normalized form (hyphens, not dots/underscores)
|
|
# - Extras go in the package name: pkg[extra1,extra2] @ git+...
|
|
# - Extras MUST be sorted alphabetically and use hyphens (not underscores)
|
|
# - Do NOT use the legacy #egg=name format
|
|
#
|
|
# Example:
|
|
# WRONG: git+https://github.com/org/repo.git@devel#egg=my-package[foo,bar]
|
|
# WRONG: my_package[bar,foo] @ git+https://github.com/org/repo.git@devel
|
|
# RIGHT: my-package[bar,foo] @ git+https://github.com/org/repo.git@devel
|
|
#
|
|
# updater.sh uses these lines to comment out matching entries in requirements.txt
|
|
# so they are not installed twice (once from git, once from PyPI).
|
|
#
|
|
certifi @ git+https://github.com/ansible/system-certifi.git@devel
|
|
ansible-runner @ git+https://github.com/ansible/ansible-runner.git@devel
|
|
awx-plugins-core[credentials-github-app] @ git+https://github.com/ansible/awx-plugins.git@devel
|
|
django-ansible-base[feature-flags,jwt-consumer,rbac,resource-registry,rest-filters] @ git+https://github.com/ansible/django-ansible-base@devel
|
|
awx-plugins-interfaces @ git+https://github.com/ansible/awx_plugins.interfaces.git
|