We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de2aeb8 commit 6aeee7bCopy full SHA for 6aeee7b
meson.build
@@ -1,7 +1,8 @@
1
project(
2
'nipy',
3
'c',
4
- version: '0.5.1.dev1',
+ # Update also in __init__.py
5
+ version: '0.6.0',
6
license: 'BSD-3',
7
meson_version: '>= 1.1.1',
8
default_options: [
nipy/__init__.py
@@ -5,7 +5,11 @@
import os
-__version__ = "0.5.1.dev1"
+# When updating here, also update meson.build file.
9
+# Form for development.
10
+# __version__ = "0.5.1.dev1"
11
+# Form for release.
12
+__version__ = "0.6.0"
13
14
15
def _test_local_install():
0 commit comments