Skip to content

Commit

Permalink
include requirements.txt in source distribution (#3623)
Browse files Browse the repository at this point in the history
* include requirements.txt in source distribution

Signed-off-by: Chun-Wei Chen <jacky82226@gmail.com>

* Bump bugfix onnx release version to v1.10.1

Signed-off-by: Rajeev Rao <rajeevrao@nvidia.com>

Co-authored-by: Chun-Wei Chen <jacky82226@gmail.com>
  • Loading branch information
rajeevsrao and jcwchen committed Aug 2, 2021
1 parent 7c1e0b0 commit 1f63dcb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Expand Up @@ -7,3 +7,4 @@ recursive-include cmake *
recursive-include tools *
include VERSION_NUMBER
include CMakeLists.txt
include requirements.txt
2 changes: 1 addition & 1 deletion VERSION_NUMBER
@@ -1 +1 @@
1.10.0
1.10.1
1 change: 1 addition & 0 deletions docs/Versioning.md
Expand Up @@ -176,6 +176,7 @@ ONNX version|IR version|Opset version ai.onnx|Opset version ai.onnx.ml|Opset ver
1.8.1|7|13|2|1
1.9.0|7|14|2|1
1.10.0|8|15|2|1
1.10.1|8|15|2|1

A programmatically accessible version of the above table is available [here](../onnx/helper.py). Limited version number
information is also maintained in [version.h](../onnx/common/version.h) and [schema.h](../onnx/defs/schema.h).
Expand Down
2 changes: 1 addition & 1 deletion onnx/common/version.h
Expand Up @@ -8,6 +8,6 @@
namespace ONNX_NAMESPACE {

// Represents the most recent release version. Updated with every release.
constexpr const char* LAST_RELEASE_VERSION = "1.10.0";
constexpr const char* LAST_RELEASE_VERSION = "1.10.1";

}
3 changes: 2 additions & 1 deletion onnx/helper.py
Expand Up @@ -40,7 +40,8 @@
('1.8.0', 7, 13, 2, 1),
('1.8.1', 7, 13, 2, 1),
('1.9.0', 7, 14, 2, 1),
('1.10.0', 8, 15, 2, 1)
('1.10.0', 8, 15, 2, 1),
('1.10.1', 8, 15, 2, 1)
] # type: VersionTableType

VersionMapType = Dict[Tuple[Text, int], int]
Expand Down

0 comments on commit 1f63dcb

Please sign in to comment.