Skip to content

Commit 2079ce2

Browse files
authored
Merge pull request #271 from Pyomo/0_12_rev0
0.11.1
2 parents 6d3e031 + bcd6e07 commit 2079ce2

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

README.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,10 @@ NOTICE
1111

1212
There was a disruptive change on August 11, 2022 concerning how
1313
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
1716
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
1918
probably refers to the newest version.
2019

2120
Status for internal tests

doc/src/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@
6868
# built documents.
6969
#
7070
# The short X.Y version.
71-
version = '0.11'
71+
version = '0.11.1'
7272
# The full version, including alpha/beta/rc tags.
73-
release = '0.11'
73+
release = '0.11.1'
7474

7575
# The language for content autogenerated by Sphinx. Refer to documentation
7676
# for a list of supported languages.

setup.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,19 @@
1111

1212
from setuptools import find_packages
1313
from distutils.core import setup
14+
from pathlib import Path
1415

1516
packages = find_packages()
1617

18+
this_directory = Path(__file__).parent
19+
long_description = (this_directory / "README.rst").read_text()
20+
1721
# intentionally leaving out mpi4py to help readthedocs
1822
setup(
1923
name='mpi-sppy',
20-
version='0.11',
24+
version='0.11.1',
2125
description="mpi-sppy",
26+
long_description=long_description,
2227
url='https://github.com/Pyomo/mpi-sppy',
2328
author='David Woodruff',
2429
author_email='[email protected]',

0 commit comments

Comments
 (0)