Skip to content

Commit

Permalink
Merge pull request #340 from frheault/change_version
Browse files Browse the repository at this point in the history
Change version
  • Loading branch information
arnaudbore authored Oct 21, 2020
2 parents 680c1ac + 887c059 commit b402ec3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Cython==0.29.*
dipy==1.2.*
fury==0.2.*
future==0.17.*
h5py==2.9.*
h5py==2.10.*
kiwisolver==1.0.*
matplotlib==2.2.*
nibabel==3.0.*
Expand All @@ -20,7 +20,7 @@ scikit-learn==0.22.*
scipy==1.4.*
setuptools==46.1.*
six==1.15.*
vtk==9.0.1
vtk>=8.0.0,<10.0.0
trimeshpy==0.0.*
coloredlogs==10.0.*
nilearn==0.6.*
Expand Down
6 changes: 3 additions & 3 deletions scilpy/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import glob

# Format expected by setup.py and doc/source/conf.py: string of form "X.Y.Z"
_version_major = 0
_version_minor = 2
_version_major = 1
_version_minor = 0
_version_micro = ''
_version_extra = 'dev'
_version_extra = ''

# Construct full version string from these.
_ver = [_version_major, _version_minor]
Expand Down
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext


with open('requirements.txt') as f:
required_dependencies = f.read().splitlines()
external_dependencies = []
Expand Down

0 comments on commit b402ec3

Please sign in to comment.