File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ Installation is available through the `pip` Python package manager. This will al
1010pip install cpmpy
1111```
1212
13+ CPMpy requires python verion 3.7 or higher.
14+
1315See [ installation instructions] ( ./installation_instructions.rst ) for more details.
1416
1517## Using the library
Original file line number Diff line number Diff 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)
You can’t perform that action at this time.
0 commit comments