Skip to content

Commit 242e46b

Browse files
committed
Release: 1.1.0.2
1 parent 0523379 commit 242e46b

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -43,28 +43,28 @@ Choose *one* of the install methods below to get started:
4343

4444
```bash
4545
# optional: append --user
46-
pip install openPMD-validator==1.1.0.1
46+
pip install openPMD-validator==1.1.0.2
4747
```
4848

4949
### Spack
5050

5151
```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
5454
```
5555

5656
### Conda
5757

5858
```bash
59-
conda install -c ax3l openpmd_validator==1.1.0.1
59+
conda install -c ax3l openpmd_validator==1.1.0.2
6060
```
6161

6262
### From Source
6363

6464
```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/
6868

6969
# optional: append --user
7070
python setup.py install

conda_recipe/meta.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "1.1.0.1" %}
1+
{% set version = "1.1.0.2" %}
22

33
package:
44
name: openpmd_validator

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ def read_requirements():
77

88

99
def read_readme():
10-
with open('README.md') as f:
10+
with open('./README.md', encoding='utf-8') as f:
1111
return f.read()
1212

1313

1414
setup(
1515
name='openPMD-validator',
16-
version='1.1.0.1',
16+
version='1.1.0.2',
1717
url='https://github.com/openPMD/openPMD-validator',
1818
# author=..., # TODO
1919
# author_email=..., # TODO
@@ -23,6 +23,7 @@ def read_readme():
2323
install_requires=read_requirements(),
2424
description='Validator and examples for openPMD format',
2525
long_description=read_readme(),
26+
long_description_content_type='text/markdown',
2627
classifiers=[
2728
# 'Development Status :: 4 - Beta',
2829
'Environment :: Console',

0 commit comments

Comments
 (0)