Skip to content

Commit

Permalink
Merge pull request #248 from moorepants/version-1.4.0
Browse files Browse the repository at this point in the history
Version 1.4.0
  • Loading branch information
moorepants authored Apr 1, 2024
2 parents bb3227a + 773e755 commit fae328a
Show file tree
Hide file tree
Showing 14 changed files with 32 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.11']
python-version: ['3.12']
ipopt-version: ['3.14']
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
ipopt-version: ['3.12', '3.13', '3.14']
exclude:
- os: windows-latest
Expand Down
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ Matt Haberland <mhaberla@calpoly.edu>
Benjamin A. Beasley <code@musicinmybrain.net>
Polina Lakrisenko <p.lakrisenko@gmail.com>
Christoph Hansknecht <christoph.hansknecht@tu-clausthal.de>
Markus Zimmer <none>
Thomas Lynn <lynn.thomas.f@gmail.com>
19 changes: 17 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,23 @@ Include sections:
Version History
---------------

[1.4.0.dev0] - XXXX-XX-XX
~~~~~~~~~~~~~~~~~~~~~~~~~
[1.4.0] - 2024-04-01
~~~~~~~~~~~~~~~~~~~~

Added
+++++

- Support for building with Cython 3. #227, #240
- Exposed the ``eps`` kwarg in the SciPy interface. #228
- Added the examples to the source tarball. #242
- Documentation improvements on specifics of Jacobian and Hessian inputs. #247
- Support for Python 3.12.

Fixed
+++++

- Ensure ``tol`` is always a float in the SciPy interface. #236
- ``print_level`` allows integers other than 0 or 1. #244

[1.3.0] - 2023-09-23
~~~~~~~~~~~~~~~~~~~~
Expand Down
2 changes: 1 addition & 1 deletion cyipopt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2017 Matthias Kümmerer
Copyright (C) 2017-2023 cyipopt developers
Copyright (C) 2017-2024 cyipopt developers
License: EPL 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion cyipopt/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2017 Matthias Kümmerer
Copyright (C) 2017-2023 cyipopt developers
Copyright (C) 2017-2024 cyipopt developers
License: EPL 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion cyipopt/scipy_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2017 Matthias Kümmerer
Copyright (C) 2017-2023 cyipopt developers
Copyright (C) 2017-2024 cyipopt developers
License: EPL 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion cyipopt/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2017 Matthias Kümmerer
Copyright (C) 2017-2023 cyipopt developers
Copyright (C) 2017-2024 cyipopt developers
License: EPL 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@

# General information about the project.
project = u'cyipopt'
copyright = u'2023, cyipopt developers'
copyright = u'2024, cyipopt developers'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down
2 changes: 1 addition & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ Copyright

| Copyright (C) 2012-2015 Amit Aides
| Copyright (C) 2015-2017 Matthias Kümmerer
| Copyright (C) 2017-2023 cyipopt developers
| Copyright (C) 2017-2024 cyipopt developers
| License: EPL 2.0
2 changes: 1 addition & 1 deletion examples/exception_handling.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2017 Matthias Kümmerer
Copyright (C) 2017-2023 cyipopt developers
Copyright (C) 2017-2024 cyipopt developers
License: EPL 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion examples/hs071.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2017 Matthias Kümmerer
Copyright (C) 2017-2023 cyipopt developers
Copyright (C) 2017-2024 cyipopt developers
License: EPL 2.0
"""
Expand Down
2 changes: 1 addition & 1 deletion examples/lasso.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2017 Matthias Kümmerer
Copyright (C) 2017-2023 cyipopt developers
Copyright (C) 2017-2024 cyipopt developers
License: EPL 2.0
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2017 Matthias Kümmerer
Copyright (C) 2017-2023 cyipopt developers
Copyright (C) 2017-2024 cyipopt developers
License: EPL 2.0
"""
Expand Down Expand Up @@ -61,6 +61,7 @@
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]


Expand Down

0 comments on commit fae328a

Please sign in to comment.