mirror of
https://github.com/ANL-CEEESA/MIPLearn.git
synced 2025-12-06 01:18:52 -06:00
Fix tests for Python 3.6
This commit is contained in:
1
Makefile
1
Makefile
@@ -27,6 +27,7 @@ docs-dev:
|
|||||||
|
|
||||||
install-deps:
|
install-deps:
|
||||||
$(PIP) install -i https://pypi.gurobi.com gurobipy
|
$(PIP) install -i https://pypi.gurobi.com gurobipy
|
||||||
|
$(PIP) install xpress
|
||||||
$(PIP) install -r requirements.txt
|
$(PIP) install -r requirements.txt
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
|||||||
@@ -2,7 +2,9 @@
|
|||||||
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
|
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
|
||||||
# Released under the modified BSD license. See COPYING.md for more details.
|
# Released under the modified BSD license. See COPYING.md for more details.
|
||||||
|
|
||||||
from typing import TypedDict, Optional, Dict, Callable, Any
|
from typing import Optional, Dict, Callable, Any
|
||||||
|
|
||||||
|
from mypy_extensions import TypedDict
|
||||||
|
|
||||||
TrainingSample = TypedDict(
|
TrainingSample = TypedDict(
|
||||||
"TrainingSample",
|
"TrainingSample",
|
||||||
|
|||||||
Reference in New Issue
Block a user