Skip to content

Commit db292a6

Browse files
authored
fix asm parser (#19)
1 parent e262995 commit db292a6

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,9 @@ jobs:
8686
- name: install prereqs
8787
run: |
8888

89+
pip install --upgrade pip
8990
pip install -r requirements.txt
90-
pip install cmake>=3.28 setuptools>=42 wheel
91+
pip install cmake>=3.28 setuptools>=64 wheel
9192
pip download mlir -f https://makslevental.github.io/wheels
9293
unzip -q mlir-*.whl
9394
rm -rf mlir-*.whl

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"cmake>=3.28",
4-
"setuptools>=42",
4+
"setuptools>=64",
55
"wheel",
66
"ninja>=1.12.1"
77
]
@@ -28,14 +28,14 @@ before-all = [
2828
]
2929
before-build = [
3030
"pip install -r requirements.txt",
31-
"pip install cmake>=3.28 setuptools>=42 wheel ninja>=1.12.1"
31+
"pip install cmake>=3.28 setuptools>=64 wheel ninja>=1.12.1"
3232
]
3333

3434
[tool.cibuildwheel.macos]
3535
build = "cp310-* cp311-* cp312-*"
3636
before-build = [
3737
"pip install -r requirements.txt",
38-
"pip install cmake>=3.28 setuptools>=42 wheel ninja>=1.12.1"
38+
"pip install cmake>=3.28 setuptools>=64 wheel ninja>=1.12.1"
3939
]
4040
repair-wheel-command = []
4141

@@ -44,5 +44,5 @@ build = "cp38-* cp39-* cp310-* cp311-* cp312-*"
4444
skip = ["*-win32"]
4545
before-build = [
4646
"pip install -r requirements.txt",
47-
"pip install cmake>=3.28 setuptools>=42 wheel ninja>=1.12.1"
47+
"pip install cmake>=3.28 setuptools>=64 wheel ninja>=1.12.1"
4848
]

src/MinimalDialect.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010

1111
#include "mlir/Dialect/Func/IR/FuncOps.h"
1212
#include "mlir/IR/Builders.h"
13+
#include "mlir/IR/DialectImplementation.h"
1314
#include "mlir/IR/PatternMatch.h"
1415
#include "mlir/InitAllDialects.h"
1516
#include "mlir/InitAllPasses.h"

0 commit comments

Comments
 (0)