Skip to content

Commit b138694

Browse files
committed
Merge remote-tracking branch 'origin/release-2025.2.0' into estelle/geneOntologyControlledKeywords
2 parents 19a758f + 60d4e0d commit b138694

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "mavedb"
7-
version = "2025.1.0"
7+
version = "2025.1.1"
88
description = "API for MaveDB, the database of Multiplexed Assays of Variant Effect."
99
license = "AGPL-3.0-only"
1010
readme = "README.md"

src/mavedb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
logger = module_logging.getLogger(__name__)
77

88
__project__ = "mavedb-api"
9-
__version__ = "2025.1.0"
9+
__version__ = "2025.1.1"
1010

1111
logger.info(f"MaveDB {__version__}")

src/mavedb/worker/settings.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,10 @@
2323
map_variants_for_score_set,
2424
refresh_published_variants_view,
2525
]
26+
# In UTC time. Depending on daylight savings time, this will bounce around by an hour but should always be very early in the morning
27+
# for all of the USA.
2628
BACKGROUND_CRONJOBS: list[CronJob] = [
27-
cron(refresh_materialized_views, name="refresh_all_materialized_views", hour=3, minute=0)
29+
cron(refresh_materialized_views, name="refresh_all_materialized_views", hour=20, minute=0)
2830
]
2931

3032
REDIS_IP = os.getenv("REDIS_IP") or "localhost"

0 commit comments

Comments
 (0)