mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2024-11-25 10:10:19 -06:00
34 lines
1.2 KiB
Plaintext
34 lines
1.2 KiB
Plaintext
#####################################
|
|
# Include all the common dependencies
|
|
#####################################
|
|
-r ../../requirements.txt
|
|
|
|
###########################################
|
|
# Add all the development dependencies here
|
|
###########################################
|
|
pycodestyle==2.3.1
|
|
pyperclip~=1.6.0
|
|
testscenarios==0.5.0
|
|
testtools==2.3.0
|
|
traceback2==1.4.0
|
|
unittest2==1.1.0
|
|
|
|
################################################################
|
|
# Modules specifically requires for Python2.7 or greater version
|
|
################################################################
|
|
selenium==3.11.0; python_version >= '2.7'
|
|
|
|
###############################################################
|
|
# Modules required for Python2.6
|
|
###############################################################
|
|
selenium==3.3.3; python_version < '2.7'
|
|
|
|
###############################################################
|
|
# Modules specifically required for Python3.3 or lesser version
|
|
###############################################################
|
|
mock===2.0.0; python_version < '3.3'
|
|
|
|
# Leave this at the end because there is a bug where the '--install-option'
|
|
# is applied to all subsequent requirements
|
|
chromedriver_installer==0.0.6 --install-option='--chromedriver-version=2.38'
|