Skip to content

Commit 6b3d56c

Browse files
committed
deprecating Python 3.6
1 parent 8b1ea0a commit 6b3d56c

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.github/workflows/egret.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
matrix:
2828
os: [ubuntu-latest]
29-
python-version: [3.6, 3.7, 3.8, 3.9]
29+
python-version: [3.7, 3.8, 3.9]
3030
pyomo-version: [5.7.1]
3131
pyutilib-version: [6.0.0]
3232
include:

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ EGRET is available under the BSD License (see LICENSE.txt)
2424

2525
### Requirements
2626

27+
* Python 3.7 or later
2728
* Pyomo version 5.7.1 or later
2829
* pytest
2930
* Optimization solvers for Pyomo - specific requirements depends on the models being solved. EGRET is tested with Gurobi or CPLEX for MIP-based problems (e.g., unit commitment) and Ipopt (with HSL linear solvers) for NLP problems.

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
'scripts': [],
2828
'include_package_data': True,
2929
'install_requires' : ['pyomo>=5.7.1', 'numpy', 'pytest', 'pandas', \
30-
'matplotlib', 'seaborn', 'scipy', 'networkx']
30+
'matplotlib', 'seaborn', 'scipy', 'networkx'],
31+
'python_requires' : '>=3.7, <4',
3132
}
3233

3334
setup(name=DISTNAME,

0 commit comments

Comments
 (0)