Skip to content

Commit ca66496

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents adaed42 + a8c180b commit ca66496

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

docs/modeling.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ Installation is available through the `pip` Python package manager. This will al
1010
pip install cpmpy
1111
```
1212

13+
CPMpy requires python verion 3.7 or higher.
14+
1315
See [installation instructions](./installation_instructions.rst) for more details.
1416

1517
## Using the library

setup.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ def get_version(rel_path):
3232
include_package_data=True,
3333
zip_safe=False,
3434
install_requires=[
35-
'ortools>=5.0',
35+
'ortools>=9.9',
3636
'numpy>=1.5',
3737
],
3838
#extra dependency, only needed if minizinc is to be used.
@@ -41,12 +41,14 @@ def get_version(rel_path):
4141
},
4242
classifiers=[
4343
"Programming Language :: Python :: 3 :: Only",
44-
"Programming Language :: Python :: 3.6",
4544
"Programming Language :: Python :: 3.7",
4645
"Programming Language :: Python :: 3.8",
4746
"Programming Language :: Python :: 3.9",
47+
"Programming Language :: Python :: 3.10",
48+
"Programming Language :: Python :: 3.11",
49+
"Programming Language :: Python :: 3.12",
4850
"License :: OSI Approved :: Apache Software License",
4951
"Operating System :: OS Independent",
5052
],
51-
python_requires='>=3.6'
53+
python_requires='>=3.7'
5254
)

0 commit comments

Comments
 (0)