mirror of
https://github.com/ansible/awx.git
synced 2026-03-22 19:35:02 -02:30
Get offline pip installs working
I had to pull the git urls out of the main requirements files because in order to install offline (--no-index), we need pip to install from local package archives rather than cloning repo. The weird `cat` thing going on in the Makefile is because we need to install everything as part of a single `pip install` transaction. Without this, installing only requirements_git.txt will result in dependencies getting unintentionally updated.
This commit is contained in:
@@ -1,8 +1,3 @@
|
||||
-e git+https://github.com/ansible/ansiconv.git@tower_1.0.0#egg=ansiconv
|
||||
-e git+https://github.com/ansible/django-jsonbfield@fix-sqlite_serialization#egg=jsonbfield
|
||||
-e git+https://github.com/ansible/django-qsstats-magic.git@tower_0.7.2#egg=django-qsstats-magic
|
||||
-e git+https://github.com/ansible/dm.xmlsec.binding.git@master#egg=dm.xmlsec.binding
|
||||
-e git+https://github.com/chrismeyersfsu/pyrax@tower#egg=pyrax
|
||||
apache-libcloud==1.3.0
|
||||
appdirs==1.4.2
|
||||
asgi-amqp==0.4.1
|
||||
|
||||
@@ -4,11 +4,6 @@
|
||||
#
|
||||
# pip-compile --output-file requirements/requirements.txt requirements/requirements.in
|
||||
#
|
||||
git+https://github.com/ansible/ansiconv.git@tower_1.0.0#egg=ansiconv
|
||||
git+https://github.com/ansible/django-qsstats-magic.git@tower_0.7.2#egg=django-qsstats-magic
|
||||
git+https://github.com/ansible/dm.xmlsec.binding.git@master#egg=dm.xmlsec.binding
|
||||
git+https://github.com/ansible/django-jsonbfield@fix-sqlite_serialization#egg=jsonbfield
|
||||
git+https://github.com/chrismeyersfsu/pyrax@tower#egg=pyrax
|
||||
adal==0.4.3 # via msrestazure
|
||||
amqp==1.4.9 # via kombu
|
||||
anyjson==0.3.3 # via kombu
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
-e git+https://github.com/chrismeyersfsu/pyrax@tower#egg=pyrax
|
||||
apache-libcloud==1.3.0
|
||||
azure==2.0.0rc6
|
||||
backports.ssl-match-hostname==3.5.0.1
|
||||
|
||||
@@ -4,7 +4,6 @@
|
||||
#
|
||||
# pip-compile --output-file requirements/requirements_ansible.txt requirements/requirements_ansible.in
|
||||
#
|
||||
git+https://github.com/chrismeyersfsu/pyrax@tower#egg=pyrax
|
||||
adal==0.4.3 # via msrestazure
|
||||
amqp==1.4.9 # via kombu
|
||||
anyjson==0.3.3 # via kombu
|
||||
|
||||
1
requirements/requirements_ansible_git.txt
Normal file
1
requirements/requirements_ansible_git.txt
Normal file
@@ -0,0 +1 @@
|
||||
git+https://github.com/chrismeyersfsu/pyrax@tower#egg=pyrax
|
||||
5
requirements/requirements_git.txt
Normal file
5
requirements/requirements_git.txt
Normal file
@@ -0,0 +1,5 @@
|
||||
git+https://github.com/ansible/ansiconv.git@tower_1.0.0#egg=ansiconv
|
||||
git+https://github.com/ansible/django-qsstats-magic.git@tower_0.7.2#egg=django-qsstats-magic
|
||||
git+https://github.com/ansible/dm.xmlsec.binding.git@master#egg=dm.xmlsec.binding
|
||||
git+https://github.com/ansible/django-jsonbfield@fix-sqlite_serialization#egg=jsonbfield
|
||||
git+https://github.com/chrismeyersfsu/pyrax@tower#egg=pyrax
|
||||
Reference in New Issue
Block a user