Skip to content
This repository was archived by the owner on Jun 13, 2025. It is now read-only.

Commit b27a23b

Browse files
feat: move timeseries ORM related code to shared (#1135)
1 parent 23d8b1d commit b27a23b

24 files changed

+23
-1089
lines changed

codecov/settings_base.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -443,6 +443,7 @@
443443
"profiling": "shared.django_apps.profiling.migrations",
444444
"reports": "shared.django_apps.reports.migrations",
445445
"staticanalysis": "shared.django_apps.staticanalysis.migrations",
446+
"timeseries": "shared.django_apps.timeseries.migrations",
446447
}
447448

448449
# to aid in debugging, print out this info on startup. If no license, prints nothing

requirements.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ freezegun
2525
google-cloud-pubsub
2626
gunicorn>=22.0.0
2727
https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz#egg=codecovopentelem
28-
https://github.com/codecov/shared/archive/7ba099fa0552244c77a8cc3a4b772216613c09c8.tar.gz#egg=shared
28+
https://github.com/codecov/shared/archive/9235672f89d2810fcf8c37905f0645f8ac77f4d4.tar.gz#egg=shared
2929
https://github.com/photocrowd/django-cursor-pagination/archive/f560902696b0c8509e4d95c10ba0d62700181d84.tar.gz
3030
idna>=3.7
3131
minio
@@ -58,4 +58,4 @@ starlette==0.40.0
5858
stripe>=11.4.1
5959
urllib3>=1.26.19
6060
vcrpy
61-
whitenoise
61+
whitenoise

requirements.txt

Lines changed: 13 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
1-
#
2-
# This file is autogenerated by pip-compile with Python 3.12
3-
# by the following command:
4-
#
5-
# pip-compile requirements.in
6-
#
1+
# This file was autogenerated by uv via the following command:
2+
# uv pip compile requirements.in -o requirements.txt
73
aiodataloader==0.4.0
84
# via -r requirements.in
95
amplitude-analytics==1.1.4
@@ -88,11 +84,11 @@ click-repl==0.2.0
8884
# via celery
8985
codecov-ribs==0.1.18
9086
# via shared
91-
codecovopentelem @ https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz
87+
codecovopentelem @ https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz#egg=codecovopentelem
9288
# via -r requirements.in
9389
colour==0.1.5
9490
# via shared
95-
coverage[toml]==7.5.1
91+
coverage==7.5.1
9692
# via
9793
# codecovopentelem
9894
# pytest-cov
@@ -170,7 +166,7 @@ filelock==3.0.12
170166
# via virtualenv
171167
freezegun==1.1.0
172168
# via -r requirements.in
173-
google-api-core[grpc]==2.23.0
169+
google-api-core==2.23.0
174170
# via
175171
# google-cloud-core
176172
# google-cloud-pubsub
@@ -195,7 +191,7 @@ google-crc32c==1.0.0
195191
# google-resumable-media
196192
google-resumable-media==2.7.2
197193
# via google-cloud-storage
198-
googleapis-common-protos[grpc]==1.59.1
194+
googleapis-common-protos==1.59.1
199195
# via
200196
# google-api-core
201197
# grpc-google-iam-v1
@@ -404,19 +400,23 @@ requests==2.32.3
404400
# google-cloud-storage
405401
# shared
406402
# stripe
407-
rfc3986[idna2008]==1.4.0
403+
rfc3986==1.4.0
408404
# via httpx
409405
rsa==4.7.2
410406
# via google-auth
411407
s3transfer==0.5.0
412408
# via boto3
413-
sentry-sdk[celery]==2.13.0
409+
sentry-sdk==2.13.0
414410
# via
415411
# -r requirements.in
416412
# shared
417413
setproctitle==1.1.10
418414
# via -r requirements.in
419-
shared @ https://github.com/codecov/shared/archive/7ba099fa0552244c77a8cc3a4b772216613c09c8.tar.gz
415+
setuptools==75.8.0
416+
# via
417+
# ddtrace
418+
# opentelemetry-instrumentation
419+
shared @ https://github.com/codecov/shared/archive/9235672f89d2810fcf8c37905f0645f8ac77f4d4.tar.gz#egg=shared
420420
# via -r requirements.in
421421
simplejson==3.17.2
422422
# via -r requirements.in
@@ -499,6 +499,3 @@ zipp==3.19.2
499499
# via importlib-metadata
500500
zstandard==0.23.0
501501
# via shared
502-
503-
# The following packages are considered to be unsafe in a requirements file:
504-
# setuptools

timeseries/migrations/0001_initial.py

Lines changed: 0 additions & 47 deletions
This file was deleted.

timeseries/migrations/0002_continuous_aggregates.py

Lines changed: 0 additions & 37 deletions
This file was deleted.

timeseries/migrations/0003_cagg_policies.py

Lines changed: 0 additions & 24 deletions
This file was deleted.

timeseries/migrations/0004_measurement_summaries.py

Lines changed: 0 additions & 84 deletions
This file was deleted.

timeseries/migrations/0005_uniqueness_constraints.py

Lines changed: 0 additions & 35 deletions
This file was deleted.

timeseries/migrations/0006_auto_20220718_1311.py

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)