File tree 5 files changed +17
-10
lines changed
5 files changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -43,28 +43,28 @@ Choose *one* of the install methods below to get started:
43
43
44
44
``` bash
45
45
# optional: append --user
46
- pip install openPMD-validator==1.0 .0.2
46
+ pip install openPMD-validator==1.1 .0.1
47
47
```
48
48
49
49
### Spack
50
50
51
51
``` bash
52
- spack install py-openpmd-validator@1.0 .0.2 ^py-h5py~mpi
53
- spack load --dependencies py-openpmd-validator@1.0 .0.2 ^py-h5py~mpi
52
+ spack install py-openpmd-validator@1.1 .0.1 ^py-h5py~mpi
53
+ spack load --dependencies py-openpmd-validator@1.1 .0.1 ^py-h5py~mpi
54
54
```
55
55
56
56
### Conda
57
57
58
58
``` bash
59
- conda install -c ax3l openpmd_validator==1.0 .0.2
59
+ conda install -c ax3l openpmd_validator==1.1 .0.1
60
60
```
61
61
62
62
### From Source
63
63
64
64
``` bash
65
- wget https://github.com/openPMD/openPMD-validator/archive/1.0 .0.2 .tar.gz
66
- tar -xf 1.0 .0.2 .tar.gz
67
- cd openPMD-validator-1.0 .0.2 /
65
+ wget https://github.com/openPMD/openPMD-validator/archive/1.1 .0.1 .tar.gz
66
+ tar -xf 1.1 .0.1 .tar.gz
67
+ cd openPMD-validator-1.1 .0.1 /
68
68
69
69
# optional: append --user
70
70
python setup.py install
Original file line number Diff line number Diff line change 1
- {% set version = "1.0 .0.2 " %}
1
+ {% set version = "1.1 .0.1 " %}
2
2
3
3
package :
4
4
name : openpmd_validator
Original file line number Diff line number Diff line change @@ -98,6 +98,13 @@ sed -i 's/'\
98
98
' \1' $VERSION_STR ' \3/' \
99
99
$REPO_DIR /conda_recipe/meta.yaml
100
100
101
+ # example creator scripts
102
+ # hdf5
103
+ sed -i ' s/' \
104
+ ' \("softwareVersion".*\)' $regv ' \(")\)/' \
105
+ ' \1' $VERSION_STR ' \3/' \
106
+ $REPO_DIR /openpmd_validator/createExamples_h5.py
107
+
101
108
# documentation
102
109
sed -i ' s/' \
103
110
' \(.*validator==\)' $regv ' \(.*\)/' \
Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ def setup_root_attr(f):
103
103
# Recommended attributes
104
104
f .
attrs [
"author" ]
= np .
string_ (
"Axel Huebl <[email protected] >" )
105
105
f .attrs ["software" ] = np .string_ ("openPMD Example Script" )
106
- f .attrs ["softwareVersion" ] = np .string_ ("1.0.0 " )
106
+ f .attrs ["softwareVersion" ] = np .string_ ("1.1.0.1 " )
107
107
f .attrs ["softwareDependencies" ] = get_software_dependencies ()
108
108
f .attrs ["machine" ] = np .string_ (socket .gethostname ())
109
109
f .attrs ["date" ] = np .string_ (
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ def read_readme():
13
13
14
14
setup (
15
15
name = 'openPMD-validator' ,
16
- version = '1.0 .0.2 ' ,
16
+ version = '1.1 .0.1 ' ,
17
17
url = 'https://github.com/openPMD/openPMD-validator' ,
18
18
# author=..., # TODO
19
19
# author_email=..., # TODO
You can’t perform that action at this time.
0 commit comments