-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #253 from atlanticwave-sdx/245-a-higher-level-api-…
…for-state-management 245 a higher level api for state management
- Loading branch information
Showing
13 changed files
with
354 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,8 +26,6 @@ jobs: | |
fail-fast: false | ||
matrix: | ||
python-version: | ||
- "3.9" | ||
- "3.10" | ||
- "3.11" | ||
- "3.12" | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ build-backend = "flit_core.buildapi" | |
|
||
[project] | ||
name = "sdx-pce" | ||
version = "3.0.0.dev7" | ||
version = "3.0.0.dev8" | ||
description = "Heuristic and Optimal Algorithms for CSP and TE Computation" | ||
authors = [ | ||
{ name = "Yufeng Xin", email = "[email protected]" }, | ||
|
@@ -14,7 +14,7 @@ authors = [ | |
{ name = "Sajith Sasidharan", email = "[email protected]" }, | ||
] | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
requires-python = ">=3.11" | ||
license = {file = "LICENSE"} | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
|
@@ -29,7 +29,7 @@ dependencies = [ | |
"prtpy", | ||
"pydot", | ||
"dataclasses-json", | ||
"sdx-datamodel @ git+https://github.com/atlanticwave-sdx/[email protected].dev3", | ||
"sdx-datamodel @ git+https://github.com/atlanticwave-sdx/[email protected].dev4", | ||
] | ||
|
||
[project.urls] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
{ | ||
"id": "id", | ||
"name": "AMLight", | ||
"start_time": "2030-01-23T04:56:07.000", | ||
"end_time": "2030-01-23T04:56:07.000", | ||
"bandwidth_required": 100, | ||
"latency_required": 20, | ||
"egress_port": | ||
{ | ||
"id": "urn:sdx:port:amlight.net:A1:1", | ||
"name": "Novi100:1", | ||
"vlan_range": 150 | ||
"vlan_range": "150" | ||
}, | ||
"ingress_port": | ||
{ | ||
"id": "urn:sdx:port:amlight.net:B1:2", | ||
"name": "Novi100:2", | ||
"vlan_range": 150 | ||
"vlan_range": "150" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,18 @@ | ||
{ | ||
"id": "id", | ||
"name": "AMLight", | ||
"start_time": "2030-01-23T04:56:07.000", | ||
"end_time": "2030-01-23T04:56:07.000", | ||
"bandwidth_required": 100, | ||
"latency_required": 20, | ||
"egress_port": | ||
{ | ||
"id": "urn:sdx:port:amlight.net:A1:3", | ||
"name": "Novi100:1", | ||
"vlan_range": 150 | ||
"vlan_range": "150" | ||
}, | ||
"ingress_port": | ||
{ | ||
"id": "urn:sdx:port:amlight.net:B1:2", | ||
"name": "Novi100:2", | ||
"vlan_range": 160 | ||
"vlan_range": "160" | ||
} | ||
} |
Oops, something went wrong.