We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 709f3e5 commit 806964dCopy full SHA for 806964d
2 files changed
setup.py
@@ -2,7 +2,7 @@
2
3
4
def get_version() -> str:
5
- return "0.1.40"
+ return "0.1.41"
6
7
install_requires = [
8
"requests",
src/sharpai_hub/utils/check_env.py
@@ -48,6 +48,9 @@ def is_raspberrypi():
48
return False
49
def get_docker_compose_arch_filename():
50
processor = platform.processor()
51
+
52
+ if processor == '':
53
+ processor = platform.machine()
54
# print(processor)
55
arch = None
56
docker_compose_yml = None
0 commit comments