File tree 3 files changed +11
-10
lines changed
3 files changed +11
-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.1.0.1
46
+ pip install openPMD-validator==1.1.0.2
47
47
```
48
48
49
49
### Spack
50
50
51
51
``` bash
52
- spack install
[email protected] .
1 ^py-h5py~mpi
53
- spack load --dependencies
[email protected] .
1 ^py-h5py~mpi
52
+ spack install
[email protected] .
2 ^py-h5py~mpi
53
+ spack load --dependencies
[email protected] .
2 ^py-h5py~mpi
54
54
```
55
55
56
56
### Conda
57
57
58
58
``` bash
59
- conda install -c ax3l openpmd_validator==1.1.0.1
59
+ conda install -c ax3l openpmd_validator==1.1.0.2
60
60
```
61
61
62
62
### From Source
63
63
64
64
``` bash
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 /
65
+ wget https://github.com/openPMD/openPMD-validator/archive/1.1.0.2 .tar.gz
66
+ tar -xf 1.1.0.2 .tar.gz
67
+ cd openPMD-validator-1.1.0.2 /
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.1.0.1 " %}
1
+ {% set version = "1.1.0.2 " %}
2
2
3
3
package :
4
4
name : openpmd_validator
Original file line number Diff line number Diff line change @@ -7,13 +7,13 @@ def read_requirements():
7
7
8
8
9
9
def read_readme ():
10
- with open ('README.md' ) as f :
10
+ with open ('./ README.md' , encoding = 'utf-8 ' ) as f :
11
11
return f .read ()
12
12
13
13
14
14
setup (
15
15
name = 'openPMD-validator' ,
16
- version = '1.1.0.1 ' ,
16
+ version = '1.1.0.2 ' ,
17
17
url = 'https://github.com/openPMD/openPMD-validator' ,
18
18
# author=..., # TODO
19
19
# author_email=..., # TODO
@@ -23,6 +23,7 @@ def read_readme():
23
23
install_requires = read_requirements (),
24
24
description = 'Validator and examples for openPMD format' ,
25
25
long_description = read_readme (),
26
+ long_description_content_type = 'text/markdown' ,
26
27
classifiers = [
27
28
# 'Development Status :: 4 - Beta',
28
29
'Environment :: Console' ,
You can’t perform that action at this time.
0 commit comments