Commit e9c662a
committed
Remove python 3.9 tests as they crash for now
The error traceback:
/opt/hostedtoolcache/Python/3.9.12/x64/lib/python3.9/site-packages/discrete_optimization/tsp/tsp_model.py:267: in <module>
class Point2D(Point, NamedTuple):
/opt/hostedtoolcache/Python/3.9.12/x64/lib/python3.9/typing.py:1929: in _namedtuple_mro_entries
raise TypeError("Multiple inheritance with NamedTuple is not supported")
E TypeError: Multiple inheritance with NamedTuple is not supported
Coming from python/cpython#19363
Potential solution: replace NamedTuple by Dataclass(frozen=True)1 parent 5b62643 commit e9c662a
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
34 | 34 | | |
35 | 35 | | |
36 | 36 | | |
37 | | - | |
| 37 | + | |
38 | 38 | | |
39 | 39 | | |
40 | 40 | | |
| |||
0 commit comments