update requirements.txt and add necessary imports/functions
This commit is contained in:
parent
67dcb48a7f
commit
f7088829a1
5 changed files with 9 additions and 5 deletions
5
ee/api/.gitignore
vendored
5
ee/api/.gitignore
vendored
|
|
@ -201,16 +201,17 @@ Pipfile.lock
|
|||
/chalicelib/core/metrics/heatmaps
|
||||
/chalicelib/core/metrics/product_analytics
|
||||
/chalicelib/core/metrics/product_anaytics2.py
|
||||
/chalicelib/core/events
|
||||
/chalicelib/core/events*
|
||||
/chalicelib/core/feature_flags.py
|
||||
/chalicelib/core/issue_tracking/*
|
||||
/chalicelib/core/issues.py
|
||||
/chalicelib/core/issues/
|
||||
/chalicelib/core/jobs.py
|
||||
/chalicelib/core/log_tools/*
|
||||
/chalicelib/core/metadata.py
|
||||
/chalicelib/core/mobile.py
|
||||
/chalicelib/core/saved_search.py
|
||||
/chalicelib/core/sessions/*.py
|
||||
/chalicelib/core/sessions/**/*.py
|
||||
/chalicelib/core/sessions/sessions_viewed
|
||||
/chalicelib/core/metrics/modules
|
||||
/chalicelib/core/socket_ios.py
|
||||
|
|
|
|||
|
|
@ -21,6 +21,8 @@ python-decouple = "==3.8"
|
|||
pydantic = {extras = ["email"], version = "==2.11.4"}
|
||||
apscheduler = "==3.11.0"
|
||||
python3-saml = "==1.16.0"
|
||||
lxml = "==5.3.0"
|
||||
xmlsec = "==1.3.14"
|
||||
python-multipart = "==0.0.20"
|
||||
redis = "==6.1.0"
|
||||
azure-storage-blob = "==12.25.1"
|
||||
|
|
|
|||
|
|
@ -19,7 +19,8 @@ apscheduler==3.11.0
|
|||
# TODO: enable after xmlsec fix https://github.com/xmlsec/python-xmlsec/issues/252
|
||||
#--no-binary is used to avoid libxml2 library version incompatibilities between xmlsec and lxml
|
||||
python3-saml==1.16.0
|
||||
--no-binary=lxml
|
||||
lxml==5.3.0 --no-binary=lxml
|
||||
xmlsec==1.3.14 --no-binary=xmlsec
|
||||
|
||||
python-multipart==0.0.20
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue