Skip to content

Commit

Permalink
Merge branch 'main' into hwp-acu-checks
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianJKoopman committed Jul 31, 2024
2 parents e90c56e + 83a08e5 commit 286e52a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# A container setup with an installation of socs.

# Use the ocs image as a base
FROM simonsobs/ocs:v0.11.0
FROM simonsobs/ocs:v0.11.0-5-g3909484

# Set up the cryo/smurf user and group so this can run on smurf-servers
# See link for how all other smurf-containers are set up:
Expand Down Expand Up @@ -35,6 +35,8 @@ RUN ./labjack_ljm_software_2020_03_30_x86_64/labjack_ljm_installer.run -- --no-r
COPY requirements/ /app/socs/requirements
COPY requirements.txt /app/socs/requirements.txt
WORKDIR /app/socs/
# Work around https://github.com/pypa/setuptools/issues/4483/ temporarily
RUN pip3 install -U "setuptools<71.0.0"
RUN pip3 install -r requirements.txt

# Copy the current directory contents into the container at /app
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[build-system]
requires = [
"setuptools>=42",
# Upper bound needed until https://github.com/pypa/setuptools/issues/4483/ is fixed
"setuptools>=61.0,<71.0.0",
"wheel",
"versioneer-518",
]
Expand Down

0 comments on commit 286e52a

Please sign in to comment.