Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: move timeseries ORM related code to shared #1135

Merged
merged 3 commits into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions codecov/settings_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -443,6 +443,7 @@
"profiling": "shared.django_apps.profiling.migrations",
"reports": "shared.django_apps.reports.migrations",
"staticanalysis": "shared.django_apps.staticanalysis.migrations",
"timeseries": "shared.django_apps.timeseries.migrations",
}

# to aid in debugging, print out this info on startup. If no license, prints nothing
Expand Down
4 changes: 2 additions & 2 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ freezegun
google-cloud-pubsub
gunicorn>=22.0.0
https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz#egg=codecovopentelem
https://github.com/codecov/shared/archive/7ba099fa0552244c77a8cc3a4b772216613c09c8.tar.gz#egg=shared
https://github.com/codecov/shared/archive/9235672f89d2810fcf8c37905f0645f8ac77f4d4.tar.gz#egg=shared
https://github.com/photocrowd/django-cursor-pagination/archive/f560902696b0c8509e4d95c10ba0d62700181d84.tar.gz
idna>=3.7
minio
Expand Down Expand Up @@ -58,4 +58,4 @@ starlette==0.40.0
stripe>=11.4.1
urllib3>=1.26.19
vcrpy
whitenoise
whitenoise
29 changes: 13 additions & 16 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
#
# This file is autogenerated by pip-compile with Python 3.12
# by the following command:
#
# pip-compile requirements.in
#
# This file was autogenerated by uv via the following command:
# uv pip compile requirements.in -o requirements.txt
aiodataloader==0.4.0
# via -r requirements.in
amplitude-analytics==1.1.4
Expand Down Expand Up @@ -88,11 +84,11 @@ click-repl==0.2.0
# via celery
codecov-ribs==0.1.18
# via shared
codecovopentelem @ https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz
codecovopentelem @ https://github.com/codecov/opentelem-python/archive/refs/tags/v0.0.4a1.tar.gz#egg=codecovopentelem
# via -r requirements.in
colour==0.1.5
# via shared
coverage[toml]==7.5.1
coverage==7.5.1
# via
# codecovopentelem
# pytest-cov
Expand Down Expand Up @@ -170,7 +166,7 @@ filelock==3.0.12
# via virtualenv
freezegun==1.1.0
# via -r requirements.in
google-api-core[grpc]==2.23.0
google-api-core==2.23.0
# via
# google-cloud-core
# google-cloud-pubsub
Expand All @@ -195,7 +191,7 @@ google-crc32c==1.0.0
# google-resumable-media
google-resumable-media==2.7.2
# via google-cloud-storage
googleapis-common-protos[grpc]==1.59.1
googleapis-common-protos==1.59.1
# via
# google-api-core
# grpc-google-iam-v1
Expand Down Expand Up @@ -404,19 +400,23 @@ requests==2.32.3
# google-cloud-storage
# shared
# stripe
rfc3986[idna2008]==1.4.0
rfc3986==1.4.0
# via httpx
rsa==4.7.2
# via google-auth
s3transfer==0.5.0
# via boto3
sentry-sdk[celery]==2.13.0
sentry-sdk==2.13.0
# via
# -r requirements.in
# shared
setproctitle==1.1.10
# via -r requirements.in
shared @ https://github.com/codecov/shared/archive/7ba099fa0552244c77a8cc3a4b772216613c09c8.tar.gz
setuptools==75.8.0
# via
# ddtrace
# opentelemetry-instrumentation
shared @ https://github.com/codecov/shared/archive/9235672f89d2810fcf8c37905f0645f8ac77f4d4.tar.gz#egg=shared
# via -r requirements.in
simplejson==3.17.2
# via -r requirements.in
Expand Down Expand Up @@ -499,6 +499,3 @@ zipp==3.19.2
# via importlib-metadata
zstandard==0.23.0
# via shared

# The following packages are considered to be unsafe in a requirements file:
# setuptools
47 changes: 0 additions & 47 deletions timeseries/migrations/0001_initial.py

This file was deleted.

37 changes: 0 additions & 37 deletions timeseries/migrations/0002_continuous_aggregates.py

This file was deleted.

24 changes: 0 additions & 24 deletions timeseries/migrations/0003_cagg_policies.py

This file was deleted.

84 changes: 0 additions & 84 deletions timeseries/migrations/0004_measurement_summaries.py

This file was deleted.

35 changes: 0 additions & 35 deletions timeseries/migrations/0005_uniqueness_constraints.py

This file was deleted.

41 changes: 0 additions & 41 deletions timeseries/migrations/0006_auto_20220718_1311.py

This file was deleted.

Loading