requirements-base.txt 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. beautifulsoup4==4.7.1
  2. boto3==1.13.16
  3. botocore==1.16.16
  4. celery==4.4.7
  5. click==7.1.2
  6. confluent-kafka==1.5.0; python_version <= '3.8'
  7. confluent-kafka==1.6.0; python_version == '3.9'
  8. croniter==0.3.37
  9. dataclasses==0.8; python_version <= '3.6'
  10. datadog==0.29.3
  11. django-crispy-forms==1.8.1
  12. django-picklefield==2.1.0
  13. Django==2.2.24
  14. djangorestframework==3.11.2
  15. email-reply-parser==0.5.12
  16. google-api-core==1.25.1
  17. google-auth==1.24.0
  18. google-cloud-bigtable==1.6.1
  19. google-cloud-core==1.5.0
  20. googleapis-common-protos==1.52.0
  21. google-cloud-pubsub==2.2.0
  22. google-cloud-storage==1.35.0
  23. # Only necessary to prevent installing the latest version
  24. # https://github.com/googleapis/python-crc32c/issues/83
  25. google-crc32c==1.1.2; python_version == '3.8'
  26. jsonschema==3.2.0
  27. lxml==4.6.3
  28. maxminddb==2.0.3
  29. mistune==0.8.4
  30. mmh3==3.0.0
  31. parsimonious==0.8.0
  32. petname==2.6
  33. phonenumberslite==8.12.0
  34. Pillow==8.2.0; python_version == '3.6'
  35. Pillow==8.3.1; python_version > '3.6'
  36. progressbar2==3.32.0
  37. python-rapidjson==1.4
  38. psycopg2-binary==2.8.6
  39. PyJWT==2.1.0
  40. python-dateutil==2.8.1
  41. python-memcached==1.59
  42. python-u2flib-server==5.0.0
  43. python3-saml==1.10.1
  44. PyYAML==5.4
  45. rb==1.9.0
  46. redis-py-cluster==2.1.0
  47. redis==3.4.1
  48. requests-oauthlib==1.2.0
  49. requests==2.25.1
  50. # [start] jsonschema format validators
  51. rfc3339-validator==0.1.2
  52. rfc3986-validator==0.1.1
  53. # [end] jsonschema format validators
  54. sentry-relay==0.8.8
  55. sentry-sdk>=1.4.3,<1.5.0
  56. snuba-sdk>=0.0.25,<1.0.0
  57. simplejson==3.17.2
  58. statsd==3.3
  59. structlog==21.1.0
  60. symbolic==8.3.1
  61. toronado==0.1.0
  62. ua-parser==0.10.0
  63. unidiff==0.6.0
  64. urllib3==1.24.2
  65. uWSGI==2.0.19.1
  66. zstandard==0.14.1
  67. msgpack==1.0.0
  68. # for encrypting stored user credentials
  69. cryptography==3.3.2; python_version == '3.6'
  70. # Development only: It has an arm64 wheel for Apple M1 chipsets
  71. cryptography==3.4.8; python_version > '3.6'
  72. # celery
  73. billiard==3.6.3
  74. kombu==4.6.11
  75. # Note, grpcio>1.30.0 requires setting GRPC_POLL_STRATEGY=epoll1
  76. # See https://github.com/grpc/grpc/issues/23796 and
  77. # https://github.com/grpc/grpc/blob/v1.35.x/doc/core/grpc-polling-engines.md#polling-engine-implementations-in-grpc
  78. grpcio==1.40.0
  79. # not directly used, but provides a speedup for redis
  80. hiredis==0.3.1
  81. # not directly used, but pinned for at least semaphore/symbolic
  82. cffi==1.14.5
  83. # not directly used, but pinned for toronado because it doesn't pin these
  84. cssutils==1.0.2
  85. cssselect==1.0.3
  86. # sentry-plugins specific dependencies
  87. phabricator==0.7.0
  88. # test dependencies, but unable to move to requirements-test until
  89. # sentry.utils.pytest and sentry.testutils are moved to tests/
  90. selenium==3.141.0
  91. sqlparse==0.2.4
  92. # We're still using mock in Python 3.6 because it contains a fix to Python issue37972.
  93. # We should be able to fully swap it out for stdlib once we're on 3.8.
  94. mock==4.0.3
  95. # this is already a transitive dependency via structlog, and we started
  96. # implicitly relying on it because of that. Can probably be removed with 3.8
  97. typing-extensions==3.10.0.2