-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
130 lines (122 loc) · 3.56 KB
/
pyproject.toml
File metadata and controls
130 lines (122 loc) · 3.56 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
[project]
name = "umbrella"
version = "0.1.0"
requires-python = ">=3.13"
[tool.uv]
default-groups = ["prod", "dev"]
required-version = ">=0.7.5"
[tool.uv.sources]
timestring = { git = "https://github.com/codecov/timestring", rev = "d37ceacc5954dff3b5bd2f887936a98a668dda42" }
test-results-parser = { git = "https://github.com/codecov/test-results-parser", rev = "accbb7f63cc973ee9809b181a5cf67f1f8f13ecd" }
shared = { workspace = true } # TODO remove after repo-root migration
[tool.uv.workspace]
members = ["libs/shared"] # TODO remove after repo-root migration
[dependency-groups]
shared = [
"amplitude-analytics>=1.1.4",
"cachetools>=4.1.1",
"celery>=5.3.6",
"cerberus>=1.3.5",
"codecov-ribs>=0.1.18",
"colour>=0.1.5",
"cryptography>=43.0.1",
"django-better-admin-arrayfield>=1.4.2",
"django-model-utils>=4.5.1",
"django-postgres-extra>=2.0.8",
"django-prometheus>=2.3.1",
"django>=4.2.27,<5.0.0",
"google-auth>=2.21.1",
"google-cloud-pubsub>=2.27.1",
"httpx>=0.23.1",
"ijson>=3.2.3",
"minio>=7.2.15",
"mmh3>=5.0.1",
"msgpack>=1.1.0",
"multidict>=6.1.0",
"oauthlib>=3.1.2",
"orjson>=3.10.11",
"polars>=1.12.0",
"prometheus-client>=0.17.1",
"psycopg2-binary>=2.9.10",
"pydantic>=2.10.4",
"pyjwt>=2.8.0,<2.10.0",
"pyparsing>=2.4.7",
"python-dateutil>=2.9.0.post0",
"python-json-logger>=3.1.0",
"python-redis-lock>=4.0.0",
"redis>=4.4.4",
"regex>=2023.12.25",
"requests>=2.32.3",
"sentry-sdk>=2.29.1",
"sentry-sdk[celery]>=2.29.1",
"shared", # TODO: remove after repo-root migration
"sqlalchemy<2",
"stripe>=11.4.1",
"urllib3==1.26.20",
]
codecov-api = [
"aiodataloader>=0.4.0",
"ariadne-django>=0.3.0",
"ariadne>=0.23.0",
"certifi>=2024.7.4",
"django-autocomplete-light>=3.11.0",
"django-cors-headers>=3.7.0",
"django-csp==3.8.0",
"django-cursor-pagination>=0.3.0",
"django-filter>=2.4.0",
"djangorestframework>=3.15.2",
"drf-spectacular-sidecar>=2023.3.1",
"drf-spectacular>=0.26.2",
"gunicorn>=22.0.0",
"idna>=3.7",
"simplejson>=3.17.2",
"starlette>=0.49.1",
"whitenoise>=5.2.0",
{ include-group = "shared" },
]
worker = [
"asgiref>=3.7.2",
"click>=8.1.7",
"jinja2>=3.1.5",
"lxml>=5.3.0",
"openai>=1.2.4",
"pyyaml>=6.0.1",
"sqlalchemy<2",
"sqlparse>=0.5.0",
"statsd>=3.3.0",
"test-results-parser",
"timestring",
"zstandard>=0.23.0",
{ include-group = "shared" },
]
dev = [
# Workspace dev-dependencies
"mypy>=1.15.0",
"pre-commit>=4.2.0",
"ruff>=0.12.0",
# Test runtime dependencies
"coverage>=7.8.0",
"factory-boy>=3.3.3",
"fakeredis>=2.29.0",
"freezegun>=1.5.1",
"mock>=5.2.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-celery>=1.2.0",
"pytest-codspeed>=3.2.0",
"pytest-cov>=6.1.1",
"pytest-django>=4.11.1",
"pytest-insta==0.3.0",
"pytest-mock>=3.14.0",
"pytest-sqlalchemy>=0.3.0",
"respx>=0.22.0",
"sqlalchemy-utils>=0.41.2",
"types-mock>=5.2.0.20250516",
"types-requests<2.31.0.7", # this is pinned to an older version because of `urllib3` dependency
"vcrpy>=7.0.0",
"django-stubs[compatible-mypy]>=5.2.1",
"djangorestframework-stubs[compatible-mypy]>=3.16.0",
"pytest-freezer>=0.4.9",
"django-debug-toolbar>=6.0.0",
]
prod = [{ include-group = "codecov-api" }, { include-group = "worker" }]