ommx-python-mip-adapter 2.0.12__tar.gz → 2.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/PKG-INFO +4 -3
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter.egg-info/PKG-INFO +4 -3
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter.egg-info/requires.txt +1 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/pyproject.toml +8 -4
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/README.md +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter/__init__.py +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter/adapter.py +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter/exception.py +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter/python_mip_to_ommx.py +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter.egg-info/SOURCES.txt +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter.egg-info/dependency_links.txt +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter.egg-info/top_level.txt +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/setup.cfg +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/tests/test_adapter.py +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/tests/test_constant_constraint.py +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/tests/test_integration.py +0 -0
- {ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/tests/test_model_to_instance.py +0 -0
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ommx_python_mip_adapter
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: An adapter for the Python-MIP from/to OMMX.
|
|
5
5
|
Author-email: "Jij Inc." <info@j-ij.com>
|
|
6
6
|
Project-URL: Repository, https://github.com/Jij-Inc/ommx
|
|
7
7
|
Project-URL: Issues, https://github.com/Jij-Inc/ommx/issues
|
|
8
8
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
10
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
14
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
15
|
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
-
Requires-Python: >=3.
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
Requires-Dist: ommx<3.0.0,>=2.0.0b3
|
|
19
19
|
Requires-Dist: mip<2.0.0,>=1.15.0
|
|
20
|
+
Requires-Dist: cffi<2.0.0,>=1.15.0
|
|
20
21
|
|
|
21
22
|
OMMX adapter for Python-MIP
|
|
22
23
|
============================
|
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: ommx_python_mip_adapter
|
|
3
|
-
Version: 2.0
|
|
3
|
+
Version: 2.1.0
|
|
4
4
|
Summary: An adapter for the Python-MIP from/to OMMX.
|
|
5
5
|
Author-email: "Jij Inc." <info@j-ij.com>
|
|
6
6
|
Project-URL: Repository, https://github.com/Jij-Inc/ommx
|
|
7
7
|
Project-URL: Issues, https://github.com/Jij-Inc/ommx/issues
|
|
8
8
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
9
|
-
Classifier: Programming Language :: Python :: 3.9
|
|
10
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
11
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.13
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
14
14
|
Classifier: License :: OSI Approved :: Apache Software License
|
|
15
15
|
Classifier: License :: OSI Approved :: MIT License
|
|
16
|
-
Requires-Python: >=3.
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
17
|
Description-Content-Type: text/markdown
|
|
18
18
|
Requires-Dist: ommx<3.0.0,>=2.0.0b3
|
|
19
19
|
Requires-Dist: mip<2.0.0,>=1.15.0
|
|
20
|
+
Requires-Dist: cffi<2.0.0,>=1.15.0
|
|
20
21
|
|
|
21
22
|
OMMX adapter for Python-MIP
|
|
22
23
|
============================
|
|
@@ -4,20 +4,20 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "ommx_python_mip_adapter"
|
|
7
|
-
version = "2.0
|
|
7
|
+
version = "2.1.0"
|
|
8
8
|
|
|
9
9
|
description = "An adapter for the Python-MIP from/to OMMX."
|
|
10
10
|
authors = [{ name = "Jij Inc.", email = "info@j-ij.com" }]
|
|
11
11
|
readme = "README.md"
|
|
12
12
|
|
|
13
|
-
requires-python = ">=3.
|
|
13
|
+
requires-python = ">=3.10"
|
|
14
14
|
classifiers = [
|
|
15
15
|
"Programming Language :: Python :: 3 :: Only",
|
|
16
|
-
"Programming Language :: Python :: 3.9",
|
|
17
16
|
"Programming Language :: Python :: 3.10",
|
|
18
17
|
"Programming Language :: Python :: 3.11",
|
|
19
18
|
"Programming Language :: Python :: 3.12",
|
|
20
19
|
"Programming Language :: Python :: 3.13",
|
|
20
|
+
"Programming Language :: Python :: 3.14",
|
|
21
21
|
"License :: OSI Approved :: Apache Software License",
|
|
22
22
|
"License :: OSI Approved :: MIT License",
|
|
23
23
|
]
|
|
@@ -27,7 +27,11 @@ classifiers = [
|
|
|
27
27
|
# To support Python 3.12 and Apple silicon systems, this requires latest version of Python-MIP (will be 1.16.0?),
|
|
28
28
|
# which does not release yet. https://github.com/coin-or/python-mip/issues/384
|
|
29
29
|
# This project uses dev-dependency to use the latest version of Python-MIP not to include pre-release version in the release.
|
|
30
|
-
dependencies = [
|
|
30
|
+
dependencies = [
|
|
31
|
+
"ommx >= 2.0.0b3, < 3.0.0",
|
|
32
|
+
"mip >= 1.15.0, < 2.0.0",
|
|
33
|
+
"cffi >= 1.15.0, < 2.0.0",
|
|
34
|
+
]
|
|
31
35
|
|
|
32
36
|
[project.urls]
|
|
33
37
|
Repository = "https://github.com/Jij-Inc/ommx"
|
|
File without changes
|
{ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter/__init__.py
RENAMED
|
File without changes
|
{ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/ommx_python_mip_adapter/adapter.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/tests/test_constant_constraint.py
RENAMED
|
File without changes
|
|
File without changes
|
{ommx_python_mip_adapter-2.0.12 → ommx_python_mip_adapter-2.1.0}/tests/test_model_to_instance.py
RENAMED
|
File without changes
|