Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 22 additions & 13 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,16 @@ dependencies:
- opensearch-py
- fts3
- gitpython >=2.1.0
- m2crypto >=0.38.0
- invoke
# Upper pin: m2crypto 0.46.0 rewrote ssl_read() in src/SWIG/_ssl.i and inverted the
# handling of ssl_sleep_with_timeout()'s return value (and dropped the gettimeofday()
# that initialises the deadline). Any read() on a connection with a timeout set now
# busy-loops and returns with a stale SSLTimeoutError set, which surfaces as
# "SystemError: <built-in function ssl_read> returned a result with an exception set"
# and breaks all DIRAC DISET/dips connections. Still unfixed upstream as of 0.49.0.
## Reported in
## https://lists.sr.ht/~mcepl/m2crypto/%3C7b94d866-bdd2-4a29-9713-b6a6fd076ad7@cta-observatory.org%3E
- m2crypto >=0.43,<0.46
- matplotlib
- numpy
- pexpect >=4.0.1
Expand Down Expand Up @@ -98,15 +107,15 @@ dependencies:
- types-requests
- types-setuptools
- pip:
# Prerelease of the required package for integration of OAuth2
- Authlib>=1.0.0.a2
- dominate
- pyjwt
# This is a fork of tornado with a patch to allow for configurable iostream
- git+https://github.com/DIRACGrid/tornado.git@iostreamConfigurable
# This is an extension of Tornado to use M2Crypto
# It should eventually be part of DIRACGrid
- git+https://github.com/DIRACGrid/tornado_m2crypto
- -e .[server]
# Add diracdoctools
- -e docs/
# Prerelease of the required package for integration of OAuth2
- Authlib>=1.0.0.a2
- dominate
- pyjwt
# This is a fork of tornado with a patch to allow for configurable iostream
- git+https://github.com/DIRACGrid/tornado.git@iostreamConfigurable
# This is an extension of Tornado to use M2Crypto
# It should eventually be part of DIRACGrid
- git+https://github.com/DIRACGrid/tornado_m2crypto
- -e .[server]
# Add diracdoctools
- -e docs/
Loading