Skip to content

Commit

Permalink
Merge pull request #360 from DESm1th/0.2.1
Browse files Browse the repository at this point in the history
[FIX] Update dependencies and dockerfile for release
  • Loading branch information
DESm1th authored Mar 20, 2024
2 parents 1a6a1e0 + 5abfc07 commit 0f90f94
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM ubuntu:focal
FROM ubuntu:jammy

# Install dependencies
RUN apt update && \
apt install -y --no-install-recommends ssh wget unzip git python3.8 python3-pip && \
apt install -y --no-install-recommends ssh wget unzip git python3.11 python3-pip && \
cd /usr/bin/ && \
ln -s python3.8 python
ln -s python3.11 python

# Install dcm2niix/v1.0.20211006
RUN cd /tmp && \
Expand Down
30 changes: 15 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,24 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]

dependencies = [
"docopt ~= 0.6.2",
"nibabel >= 3.0.0",
"nilearn ~= 0.7.1",
"numpy >= 1.20.0",
"pandas >= 1.0.3",
"pybids ~= 0.14.0",
"pydeface ~= 2.0.0",
"pydicom ~= 1.3.0",
"pysftp ~= 0.2.9",
"pyxnat ~= 1.2.1.0.post3",
"pyyaml ~= 5.2",
"requests ~= 2.22.0",
"urllib3",
"wrapt ~= 1.11.2"
"docopt == 0.6.2",
"nibabel == 5.2.1",
"nilearn == 0.10.3",
"numpy == 1.24.4",
"pandas == 2.0.3",
"pybids == 0.16.4",
"pydicom == 2.4.4",
"pysftp == 0.2.9",
"pyxnat == 1.6.2",
"pyyaml == 6.0.1",
"requests == 2.31.0",
"urllib3 == 2.2.1",
"wrapt == 1.16.0"
]

dynamic = ["version"]
Expand Down

0 comments on commit 0f90f94

Please sign in to comment.