diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | python-nimare.spec | 26 | ||||
-rw-r--r-- | sources | 2 |
3 files changed, 16 insertions, 13 deletions
@@ -1 +1,2 @@ /NiMARE-0.0.14.tar.gz +/NiMARE-0.1.0.tar.gz diff --git a/python-nimare.spec b/python-nimare.spec index 14e6655..548227f 100644 --- a/python-nimare.spec +++ b/python-nimare.spec @@ -1,16 +1,16 @@ %global _empty_manifest_terminate_build 0 Name: python-NiMARE -Version: 0.0.14 +Version: 0.1.0 Release: 1 Summary: NiMARE: Neuroimaging Meta-Analysis Research Environment License: MIT URL: https://github.com/neurostuff/NiMARE -Source0: https://mirrors.nju.edu.cn/pypi/web/packages/02/67/0fe846b15c4071d0e1710c4985ef34f4e646efb4ec4a783b118c3b7bfcc7/NiMARE-0.0.14.tar.gz +Source0: https://mirrors.aliyun.com/pypi/web/packages/93/2c/b3bf1778291563b624c37c4ae8b7767f6fb0e002945be542943ce3e68fa7/NiMARE-0.1.0.tar.gz BuildArch: noarch Requires: python3-cognitiveatlas Requires: python3-fuzzywuzzy -Requires: python3-indexed-gzip +Requires: python3-jinja2 Requires: python3-joblib Requires: python3-matplotlib Requires: python3-nibabel @@ -18,12 +18,16 @@ Requires: python3-nilearn Requires: python3-numba Requires: python3-numpy Requires: python3-pandas +Requires: python3-patsy +Requires: python3-plotly Requires: python3-pymare +Requires: python3-pyyaml Requires: python3-requests Requires: python3-scikit-learn Requires: python3-scipy Requires: python3-sparse Requires: python3-statsmodels +Requires: python3-torch Requires: python3-tqdm Requires: python3-m2r Requires: python3-matplotlib @@ -37,7 +41,6 @@ Requires: python3-sphinx-copybutton Requires: python3-sphinx-gallery Requires: python3-sphinx-rtd-theme Requires: python3-sphinxcontrib-bibtex -Requires: python3-codecov Requires: python3-coverage Requires: python3-coveralls Requires: python3-flake8-black @@ -66,7 +69,6 @@ Requires: python3-pandas Requires: python3-pymare Requires: python3-scikit-learn Requires: python3-scipy -Requires: python3-codecov Requires: python3-coverage Requires: python3-coveralls Requires: python3-flake8-black @@ -97,7 +99,7 @@ NiMARE (Neuroimaging Meta-Analysis Research Environment) is a Python package for coordinate-based and image-based meta-analysis of neuroimaging data. %prep -%autosetup -n NiMARE-0.0.14 +%autosetup -n NiMARE-0.1.0 %build %py3_build @@ -111,20 +113,20 @@ if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi pushd %{buildroot} if [ -d usr/lib ]; then - find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst + find usr/lib -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/lib64 ]; then - find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst + find usr/lib64 -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/bin ]; then - find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/bin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi if [ -d usr/sbin ]; then - find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst + find usr/sbin -type f -printf "\"/%h/%f\"\n" >> filelist.lst fi touch doclist.lst if [ -d usr/share/man ]; then - find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst + find usr/share/man -type f -printf "\"/%h/%f.gz\"\n" >> doclist.lst fi popd mv %{buildroot}/filelist.lst . @@ -137,5 +139,5 @@ mv %{buildroot}/doclist.lst . %{_docdir}/* %changelog -* Tue May 30 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.14-1 +* Thu Jun 08 2023 Python_Bot <Python_Bot@openeuler.org> - 0.1.0-1 - Package Spec generated @@ -1 +1 @@ -894dcff041183545ee1ebeb5b3ec8d99 NiMARE-0.0.14.tar.gz +e2f86de9069c209551663626d1bf5aea NiMARE-0.1.0.tar.gz |