File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ This document follows the conventions laid out in [Keep a CHANGELOG][].
11
11
12
12
- Added automatic NuGet package generation in appveyor and local builds
13
13
- Added function that sets Py_NoSiteFlag to 1.
14
+ - Added support for Jetson Nano.
14
15
15
16
### Changed
16
17
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ public enum MachineType
6
6
x86_64 ,
7
7
armv7l ,
8
8
armv8 ,
9
+ aarch64 ,
9
10
Other
10
11
} ;
11
12
Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ public class Runtime
143
143
[ "em64t" ] = MachineType . x86_64 ,
144
144
[ "armv7l" ] = MachineType . armv7l ,
145
145
[ "armv8" ] = MachineType . armv8 ,
146
+ [ "aarch64" ] = MachineType . aarch64 ,
146
147
} ;
147
148
148
149
/// <summary>
You can’t perform that action at this time.
0 commit comments