Skip to content

Commit d59ed6c

Browse files
committed
removing pull request comments
1 parent 82292de commit d59ed6c

7 files changed

Lines changed: 57 additions & 103 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ ipython_config.py
108108
# in version control.
109109
# https://pdm.fming.dev/#use-with-ide
110110
.pdm.toml
111+
.pdm-python
111112

112113
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
113114
__pypackages__/
@@ -160,3 +161,6 @@ cython_debug/
160161
#.idea/
161162

162163
.vscode
164+
165+
# Madsci Folder
166+
.madsci

.madsci/registry.json

Lines changed: 0 additions & 18 deletions
This file was deleted.

.pdm-python

Lines changed: 0 additions & 1 deletion
This file was deleted.

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ COPY ./README.md mir_module/README.md
1515
COPY ./pyproject.toml mir_module/pyproject.toml
1616

1717
RUN --mount=type=cache,target=/root/.cache \
18-
pip install -e ./mir_module
18+
uv pip install --python ${MADSCI_VENV}/bin/python -e /home/madsci/mir_module && \
19+
chown -R ${USER_ID}:${GROUP_ID} /home/madsci/mir_module
1920

2021
CMD ["python", "mir_module/src/mir_rest_node.py"]
2122

pyproject.toml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,10 @@ authors = [
1212
{name = "Aileen Cleary", email = "acleary@anl.gov"},
1313
]
1414
dependencies = [
15-
"madsci-node-module",
16-
"madsci-client",
17-
"madsci-common",
18-
"fastapi>=0.103.2",
19-
"uvicorn>=0.21.1",
20-
"pytest",
21-
"filelock>=3.25.2",
15+
"madsci-node-module~=0.7",
16+
"madsci-client~=0.7",
17+
"madsci-common~=0.7",
18+
"filelock>=3.25.2"
2219
]
2320
requires-python = ">=3.10.1"
2421
readme = "README.md"

0 commit comments

Comments
 (0)