Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/Dockerfiles/Ubuntu.bionic-non-free.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -124,13 +124,13 @@ ENV PATH=/usr/bin/nvm/versions/node/v12.12.0/bin:/usr/local/miniconda/bin:$PATH
COPY requirements.txt /opt/requirements.txt
RUN conda update conda -y && \
conda install nomkl && \
conda install -y \
conda install -c conda-forge -y \
blas \
cython \
matplotlib==3.1.3 \
networkx==2.4 \
nose==1.3.7 \
numpy==1.16.4 \
numpy==1.22.0 \
pandas==0.23.4 \
scipy==1.4.1 \
traits==4.6.0 \
Expand Down
4 changes: 2 additions & 2 deletions .github/Dockerfiles/Ubuntu.xenial-20200114.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,13 @@ ENV PATH="/usr/local/miniconda/bin:$PATH" \
# install conda dependencies
RUN conda update conda -y && \
conda install nomkl && \
conda install -y \
conda install -c conda-forge -y \
blas \
cython \
matplotlib==2.2.2 \
networkx==2.4 \
nose==1.3.7 \
numpy==1.15.4 \
numpy==1.22.0 \
pandas==0.23.4 \
scipy==1.1.0 \
traits==4.6.0 \
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

### Updated dependencies
- numpy 1.22.0 (from 1.16.4)

## [v1.8.4] - 2022-06-27

### Added
Expand Down
2 changes: 1 addition & 1 deletion CPAC/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def get_cpac_gitversion():
"nilearn==0.4.1",
"nipype==1.5.1",
"nose==1.3.7",
"numpy==1.16.4",
"numpy==1.22.0",
"pandas==0.23.4",
"patsy==0.5.0",
"prov==1.5.2",
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ nibabel==2.3.3
nilearn==0.4.1
nipype==1.5.1
nose==1.3.7
numpy==1.21.0
numpy==1.22.0
pandas==0.23.4
patsy==0.5.0
prov==1.5.2
Expand Down