Skip to content

Commit

Permalink
Merge pull request #104 from moorepants/drop-old-py-add-new
Browse files Browse the repository at this point in the history
Drop support for Python 3.6 & 3.7, add support for 3.10 & 3.11.
  • Loading branch information
moorepants authored Aug 26, 2023
2 parents 9851146 + 0162314 commit 2b6762b
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 38 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10", "3.11"]

steps:
- uses: actions/checkout@v2
Expand Down
23 changes: 0 additions & 23 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2014-2021, opty authors
Copyright (c) 2014-2023, opty authors
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Installation

The required dependencies are as follows:

- python 3.6-3.9
- python 3.8-3.11
- sympy >= 1.6.0
- ipopt >= 3.11 (Linux & OSX), >= 3.13 (Windows)
- numpy >= 1.19.0
Expand Down
19 changes: 9 additions & 10 deletions rtd-environment.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
name: opty-dev
channels:
- defaults
- conda-forge
- conda-forge
dependencies:
- opty
- numpy
- scipy
- sympy
- cython
- cyipopt
- matplotlib
- sphinx >=1.4
- opty
- numpy
- scipy
- sympy
- cython
- cyipopt
- matplotlib
- sphinx >=1.4
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@
},
tests_require=['pytest'],
classifiers=['Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
Expand Down

0 comments on commit 2b6762b

Please sign in to comment.