Skip to content

Commit 6382976

Browse files
rdt12Ron T
andauthored
prepare for release version-0.9.0 (#71)
* prepare for release version-0.9.0 --------- Co-authored-by: Ron T <ron.tapia@ligo.org>
1 parent 77aabc7 commit 6382976

4 files changed

Lines changed: 11 additions & 10 deletions

File tree

.github/workflows/build-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: installPython
1919
uses: actions/setup-python@v1
2020
with:
21-
python-version: '3.9.16'
21+
python-version: '3.12.10'
2222
- name: install pytest
2323
run: pip3 install pytest
2424
- name: test

CHANGES.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
# SCIMMA Server Container Changes
2-
## May 29, 2025
2+
## Jun 11, 2025
33
Version 0.9.0
44

5-
1. Update to hop-client version 0.11.1
5+
1. Update to hop-client version 0.10.1
6+
2. Update to scimma/base:0.6.0
7+
3. The update to hop-client 0.10.1 removes support for Python 3.6
68

79
## May 25, 2023
810
Version 0.8.1

Dockerfile.client

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
FROM scimma/base:0.5.2
2-
RUN cd /usr/local/src && \
1+
FROM scimma/base:0.6.0
2+
RUN cd /usr/local/src && dnf install -y python3.12-pip.noarch python3.12-setuptools.noarch && \
33
git clone https://github.com/confluentinc/confluent-kafka-python.git && \
44
cd confluent-kafka-python && \
55
git checkout v1.8.2 && \
6-
python3 setup.py build && \
7-
python3 setup.py install
6+
python3.12 setup.py build && \
7+
python3.12 setup.py install && cd && rm -rf /usr/local/src/confluent-kafka-python
88
RUN mkdir -p /root/.config && ln -s /root/shared/kafkacat.conf /root/.config/kafkacat.conf
99
RUN mkdir -p /root/.config/hop && ln -s /root/shared/config.toml /root/.config/hop/auth.toml
10-
RUN pip3 install -U pip
11-
RUN pip3 install -U hop-client==0.11.1
10+
RUN pip3.12 install -U pip && pip3.12 install -U hop-client==0.10.1
1211
RUN mkdir -p /root/test_data
1312
COPY test/data/example.gcn3 /root/test_data/example.gcn3
1413
ENV XDG_CONFIG_PATH /root

Dockerfile.server

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM scimma/base:0.5.2
1+
FROM scimma/base:0.6.0
22
RUN dnf install -y iproute
33
COPY etc/zookeeper/zoo.cfg /opt/apache-zookeeper/conf/zookeeper.properties
44
COPY etc/kafka/server.properties.auth /etc/kafka/server.properties.auth

0 commit comments

Comments
 (0)