From bde846034bbbad62d124360377ef9061e5274b12 Mon Sep 17 00:00:00 2001 From: Zach Marshall Date: Thu, 11 Jul 2024 23:21:39 +0200 Subject: [PATCH 1/2] docs: fix ATLAS release news typo --- .../atlas-open-data-for-research-release-2024.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cernopendata/modules/fixtures/data/docs/atlas-open-data-for-research-release-2024/atlas-open-data-for-research-release-2024.md b/cernopendata/modules/fixtures/data/docs/atlas-open-data-for-research-release-2024/atlas-open-data-for-research-release-2024.md index f931516616..934393f063 100644 --- a/cernopendata/modules/fixtures/data/docs/atlas-open-data-for-research-release-2024/atlas-open-data-for-research-release-2024.md +++ b/cernopendata/modules/fixtures/data/docs/atlas-open-data-for-research-release-2024/atlas-open-data-for-research-release-2024.md @@ -14,7 +14,7 @@ Today’s release builds upon previous open data releases for educational use (i The ATLAS open data website also serves as a hub for the community, which includes teachers, students, enthusiasts and, now, scientists. Anyone diving into the open data can also directly engage with ATLAS physicists, who are available to respond to user feedback and take suggestions. -This release marks the start of more to come, with ATLAS’ first release of lead-lead-nuclei collision data data up next. The ATLAS Collaboration, along with the other main LHC experiment collaborations, has [committed](https://home.cern/news/press-release/knowledge-sharing/cern-announces-new-open-data-policy-support-open-science) to making all of its data publicly accessible after a certain time. Openness is deeply ingrained in the culture of high-energy physics, enabling greater accessibility, reproducibility and better science. +This release marks the start of more to come, with ATLAS’ first release of lead-lead-nuclei collision data up next. The ATLAS Collaboration, along with the other main LHC experiment collaborations, has [committed](https://home.cern/news/press-release/knowledge-sharing/cern-announces-new-open-data-policy-support-open-science) to making all of its data publicly accessible after a certain time. Openness is deeply ingrained in the culture of high-energy physics, enabling greater accessibility, reproducibility and better science. Begin your journey with [ATLAS open data](https://opendata.atlas.cern/docs/userpath/quickstart) by following the tutorial below. From baa5de0db4e46c78db63b9487e94e4b2e1898dcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20=C5=A0imko?= Date: Thu, 18 Jul 2024 17:51:25 +0200 Subject: [PATCH 2/2] build: XRootD 5.7.0 Updates XRootD version, fixing image building troubles. --- Dockerfile | 4 ++-- requirements-production.txt | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 83507c3231..b183b889d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -25,8 +25,8 @@ # Use Invenio's alma image with Python-3.9 FROM registry.cern.ch/inveniosoftware/almalinux:1 -# Use XRootD 5.6.9 -ENV XROOTD_VERSION=5.6.9 +# Use XRootD 5.7.0 +ENV XROOTD_VERSION=5.7.0 # Install CERN Open Data Portal web node pre-requisites # hadolint ignore=DL3033 diff --git a/requirements-production.txt b/requirements-production.txt index 406b178ff7..90cae39972 100644 --- a/requirements-production.txt +++ b/requirements-production.txt @@ -582,7 +582,7 @@ wtforms==2.3.3 # via # flask-wtf # invenio-files-rest -xrootd==5.6.9 +xrootd==5.7.0 # via # cernopendata (setup.py) # xrootdpyfs diff --git a/setup.py b/setup.py index bf9a98f0e6..7e6348f278 100644 --- a/setup.py +++ b/setup.py @@ -119,7 +119,7 @@ # Pin Celery due to worker runtime issues "celery==5.2.7", # Pin XRootD consistently with Dockerfile - "xrootd==5.6.9", + "xrootd==5.7.0", # Pin Flask/gevent/greenlet/raven to make master work again "Flask==2.2.5", "Flask-Alembic==2.0.1",