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

Bump to pipeline 2024.3.19.153938 #721

Merged
merged 1 commit into from
Mar 21, 2024
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
20 changes: 3 additions & 17 deletions jobrunner/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
from multiprocessing import cpu_count
from pathlib import Path

import pipeline


class ConfigException(Exception):
pass
Expand Down Expand Up @@ -144,23 +146,7 @@ def database_urls_from_env(env):
) # 16mb


# TODO: we might want to take this list from pipeline if we implement it there.
LEVEL4_FILE_TYPES = [
# tables
".csv",
# images
".jpg",
".jpeg",
".png",
".svg",
".svgz",
# reports
".html",
".txt",
".log",
".json",
".md",
]
LEVEL4_FILE_TYPES = pipeline.constants.LEVEL4_FILE_TYPES

STATA_LICENSE = os.environ.get("STATA_LICENSE")
STATA_LICENSE_REPO = os.environ.get(
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = [
"opensafely-pipeline @ git+https://github.com/opensafely-core/pipeline@v2024.01.29.114645",
"opensafely-pipeline @ git+https://github.com/opensafely-core/pipeline@v2024.03.19.153938",
"ruyaml",
"requests",
"opentelemetry-exporter-otlp-proto-http",
Expand Down
2 changes: 1 addition & 1 deletion requirements.prod.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ googleapis-common-protos==1.56.4
# via opentelemetry-exporter-otlp-proto-http
idna==2.10
# via requests
opensafely-pipeline @ git+https://github.com/opensafely-core/pipeline@v2024.01.29.114645
opensafely-pipeline @ git+https://github.com/opensafely-core/pipeline@v2024.03.19.153938
# via opensafely-jobrunner (pyproject.toml)
opentelemetry-api==1.12.0
# via
Expand Down
Loading