Skip to content

Commit

Permalink
Bump to version 1.0.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
moorepants committed Apr 7, 2021
1 parent 2b03933 commit 8e15016
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,15 @@ Include sections:
Version History
---------------

[1.0.3] - 2021-04-07
~~~~~~~~~~~~~~~~~~~~

Changed
+++++++

- Changed PyPi distribution name back to ``ipopt``, as ``cyipopt`` is currently
unavailable.

[1.0.2] - 2021-04-06
~~~~~~~~~~~~~~~~~~~~

Expand Down
8 changes: 4 additions & 4 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ Status
.. image:: https://anaconda.org/conda-forge/cyipopt/badges/downloads.svg
:target: https://anaconda.org/conda-forge/cyipopt
* - PyPI
- .. image:: https://badge.fury.io/py/cyipopt.svg
:target: https://pypi.org/project/cyipopt
.. image:: https://pepy.tech/badge/cyipopt
:target: https://pypi.org/project/cyipopt
- .. image:: https://badge.fury.io/py/ipopt.svg
:target: https://pypi.org/project/ipopt
.. image:: https://pepy.tech/badge/ipopt
:target: https://pypi.org/project/ipopt
* - Read the Docs
- .. image:: https://readthedocs.org/projects/cyipopt/badge/?version=latest
:target: https://cyipopt.readthedocs.io/en/latest/?badge=latest
Expand Down
2 changes: 1 addition & 1 deletion cyipopt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
License: EPL 1.0
"""

__version__ = '1.1.0.dev0'
__version__ = '1.0.3'
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,13 @@ def handle_ext_modules_general_os():
else:
ext_module_data = handle_ext_modules_general_os()
EXT_MODULES, DATA_FILES, include_package_data = ext_module_data
setup(name=PACKAGE_NAME,
# NOTE : The `name` kwarg here is the distribution name, i.e. the name that
# PyPi uses for a collection of packages. Historically this has been
# `ipopt`, so `pip install ipopt` will now install the `cyipopt` and
# `ipopt` packages into the `site-packages` directory. Both `import
# cyipopt` and `import ipopt` will work, with the later giving a
# deprecation warning.
setup(name=DEPRECATED_PACKAGE_NAME,
version=VERSION,
author=AUTHOR,
author_email=EMAIL,
Expand Down

0 comments on commit 8e15016

Please sign in to comment.