File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -11,11 +11,10 @@ NOTICE
11
11
12
12
There was a disruptive change on August 11, 2022 concerning how
13
13
options are accessed. See the file ``disruptions.txt `` for more
14
- information. The most recent release was done before the change so
15
- installation using pip is not yet affected. If you are a new user,
16
- this will not affect you, regardless of how you install. If you are an
14
+ information. If you are a new user, this will not affect you,
15
+ regardless of how you install. If you are an
17
16
existing user, you should consider the disruption before updating to
18
- the latest mpi-sppy code on github . The documentation on readthedocs
17
+ the latest mpi-sppy. The documentation on readthedocs
19
18
probably refers to the newest version.
20
19
21
20
Status for internal tests
Original file line number Diff line number Diff line change 68
68
# built documents.
69
69
#
70
70
# The short X.Y version.
71
- version = '0.11'
71
+ version = '0.11.1 '
72
72
# The full version, including alpha/beta/rc tags.
73
- release = '0.11'
73
+ release = '0.11.1 '
74
74
75
75
# The language for content autogenerated by Sphinx. Refer to documentation
76
76
# for a list of supported languages.
Original file line number Diff line number Diff line change 11
11
12
12
from setuptools import find_packages
13
13
from distutils .core import setup
14
+ from pathlib import Path
14
15
15
16
packages = find_packages ()
16
17
18
+ this_directory = Path (__file__ ).parent
19
+ long_description = (this_directory / "README.rst" ).read_text ()
20
+
17
21
# intentionally leaving out mpi4py to help readthedocs
18
22
setup (
19
23
name = 'mpi-sppy' ,
20
- version = '0.11' ,
24
+ version = '0.11.1 ' ,
21
25
description = "mpi-sppy" ,
26
+ long_description = long_description ,
22
27
url = 'https://github.com/Pyomo/mpi-sppy' ,
23
28
author = 'David Woodruff' ,
24
29
You can’t perform that action at this time.
0 commit comments