Skip to content

Commit 3ccfab6

Browse files
authored
Merge pull request #298 from algorithmicsuperintelligence/fix-z3-solver-arm64-build
Fix z3 solver arm64 build
2 parents 63478f4 + 5847319 commit 3ccfab6

File tree

6 files changed

+6
-3
lines changed

6 files changed

+6
-3
lines changed

.github/workflows/publish-docker-full-arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Docker Full ARM64
22
on:
33
release:
44
types: [created]
5+
workflow_dispatch:
56

67
jobs:
78
build:

.github/workflows/publish-docker-offline-arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Docker Offline ARM64
22
on:
33
release:
44
types: [created]
5+
workflow_dispatch:
56

67
jobs:
78
build:

.github/workflows/publish-docker-proxy-arm64.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: Docker Proxy ARM64
22
on:
33
release:
44
types: [created]
5+
workflow_dispatch:
56

67
jobs:
78
build:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dependencies = [
2020
"numpy",
2121
"networkx",
2222
"openai",
23-
"z3-solver",
23+
"z3-solver<=4.15.4.0",
2424
"aiohttp",
2525
"flask",
2626
"torch",

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
numpy
22
networkx
33
openai
4-
z3-solver
4+
z3-solver<=4.15.4.0
55
aiohttp
66
flask
77
torch

requirements_proxy_only.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ requests
77
cerebras_cloud_sdk
88
numpy
99
networkx
10-
z3-solver
10+
z3-solver<=4.15.4.0
1111
sympy
1212
math_verify

0 commit comments

Comments
 (0)