pyarmor.cli.core 5.4.3__zip → 6.5.1__zip

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pyarmor.cli.core might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: pyarmor.cli.core
3
- Version: 5.4.3
3
+ Version: 6.5.1
4
4
  Summary: Provide extension module pytransform3 for Pyarmor
5
5
  Home-page: https://github.com/dashingsoft/pyarmor
6
6
  Author: Jondy Zhao
@@ -20,7 +20,7 @@
20
20
  # @Create Date: Thu Jan 12 17:29:25 CST 2023
21
21
  #
22
22
 
23
- __VERSION__ = '5.4.3'
23
+ __VERSION__ = '6.5.1'
24
24
 
25
25
 
26
26
  def format_platform():
@@ -67,6 +67,9 @@ def format_platform():
67
67
  bitness = calcsize('P'.encode()) * 8
68
68
  if bitness == 32:
69
69
  mach = 'x86'
70
+ elif plat == 'darwin' and mach == 'aarch64':
71
+ mach = 'arm64'
72
+
70
73
  return plat, mach
71
74
 
72
75
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: pyarmor.cli.core
3
- Version: 5.4.3
3
+ Version: 6.5.1
4
4
  Summary: Provide extension module pytransform3 for Pyarmor
5
5
  Home-page: https://github.com/dashingsoft/pyarmor
6
6
  Author: Jondy Zhao
@@ -1,7 +1,7 @@
1
1
  import sys
2
2
  from setuptools import setup
3
3
 
4
- __VERSION__ = '5.4.3'
4
+ __VERSION__ = '6.5.1'
5
5
 
6
6
  with open('README.rst') as f:
7
7
  long_description = f.read()