Skip to content

Commit 98dff2c

Browse files
authored
Merge branch 'master' into pybuffer2
2 parents 0ee1f2f + e193126 commit 98dff2c

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

src/runtime/platform/Types.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ public enum MachineType
66
x86_64,
77
armv7l,
88
armv8,
9+
aarch64,
910
Other
1011
};
1112

src/runtime/runtime.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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>

0 commit comments

Comments
 (0)