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][].
1111
1212- Added automatic NuGet package generation in appveyor and local builds
1313- Added function that sets Py_NoSiteFlag to 1.
14+ - Added support for Jetson Nano.
1415- Added Python 3 buffer api support and PyBuffer interface for fast byte and numpy array read/write ([ #980 ] [ p980 ] )
1516
1617### Changed
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ public enum MachineType
66 x86_64 ,
77 armv7l ,
88 armv8 ,
9+ aarch64 ,
910 Other
1011 } ;
1112
Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ public class Runtime
143143 [ "em64t" ] = MachineType . x86_64 ,
144144 [ "armv7l" ] = MachineType . armv7l ,
145145 [ "armv8" ] = MachineType . armv8 ,
146+ [ "aarch64" ] = MachineType . aarch64 ,
146147 } ;
147148
148149 /// <summary>
You can’t perform that action at this time.
0 commit comments