Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Python 3.5 and add Python 3.8 in CI tests. #58

Merged
merged 3 commits into from
Mar 24, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
language: python
python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8
before_install:
- sudo apt-get update
- if [[ "$TRAVIS_PYTHON_VERSION" == "2.7" ]]; then
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
0.2.0
=====

- Supporting only Python 2.7 and 3.6-3.8. Python 3.5 support dropped.
- Improvements to the README and setup.py for Windows installations.
- Drop Python 3.4 support and add Python 3.7 support.
- Adding installation testing on the Appveyor CI service.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ dependencies:
* C/C++ compiler
* pkg-config [only for Linux and Mac]
* Ipopt [>= 3.10.1 for Windows]
* Python 2.7 or 3.5+
* Python 2.7 or 3.6+
* setuptools
* cython
* numpy
Expand Down
13 changes: 7 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,6 @@ environment:
PYTHON_ARCH: "64"
CONDA_PY: "27"

- PYTHON: "C:\\Miniconda35-x64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
CONDA_PY: "35"

- PYTHON: "C:\\Miniconda36-x64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
Expand All @@ -24,6 +19,12 @@ environment:
PYTHON_ARCH: "64"
CONDA_PY: "37"

# There is not Miniconda38 on appveyor yet.
- PYTHON: "C:\\Miniconda37-x64"
PYTHON_VERSION: "3.8"
PYTHON_ARCH: "64"
CONDA_PY: "38"

install:
- ECHO "Filesystem root:"
- ps: "ls \"C:/\""
Expand All @@ -36,7 +37,7 @@ install:
- "%PYTHON%\\Scripts\\conda.exe update --yes conda"
- "%PYTHON%\\Scripts\\conda.exe update --yes --all"
- "%PYTHON%\\Scripts\\conda.exe config --prepend channels conda-forge"
- '%PYTHON%\\Scripts\\conda.exe install --yes numpy cython future six setuptools sphinx numpydoc mkl'
- '%PYTHON%\\Scripts\\conda.exe install --yes python=%PYTHON_VERSION% numpy cython future six setuptools sphinx numpydoc mkl'
- "%PYTHON%\\Scripts\\conda.exe update -y --all"
- "%PYTHON%\\Scripts\\conda.exe info"
- "%PYTHON%\\Scripts\\conda.exe list"
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
cyipopt: Python wrapper for the Ipopt optimization package, written in Cython.

Copyright (C) 2012-2015 Amit Aides
Copyright (C) 2015-2019 Matthias Kümmerer
Copyright (C) 2015-2020 Matthias Kümmerer

Author: Matthias Kümmerer <matthias.kuemmerer@bethgelab.org>
(original Author: Amit Aides <amitibo@tx.technion.ac.il>)
Expand Down Expand Up @@ -111,9 +111,9 @@ def pkgconfig(*packages, **kw):
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
packages=[PACKAGE_NAME],
install_requires=DEPENDENCIES,
Expand Down