File tree Expand file tree Collapse file tree 4 files changed +26
-1
lines changed
com.oracle.graal.python.cext/include Expand file tree Collapse file tree 4 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 165
165
#define HAVE_WCHAR_H 1
166
166
167
167
#define WITH_THREAD 1
168
+ #define WITH_DOC_STRINGS 1
168
169
169
170
#ifndef MS_WINDOWS
170
171
#define HAVE_UNISTD_H
Original file line number Diff line number Diff line change @@ -89,6 +89,18 @@ index 97515cb..143790d 100644
89
89
[tool.black]
90
90
line-length = 120
91
91
# NOTE: Do not extend the exclude list. Edit .lintrunner.toml instead
92
+ diff --git a/requirements.txt.in b/requirements.txt.in
93
+ index 8924206..a9c1327 100644
94
+ --- a/requirements.txt.in
95
+ +++ b/requirements.txt.in
96
+ @@ -1,6 +1,6 @@
97
+ coloredlogs
98
+ flatbuffers
99
+ - numpy >= @Python_NumPy_VERSION@
100
+ + numpy
101
+ packaging
102
+ protobuf
103
+ sympy
92
104
diff --git a/tools/ci_build/build.py b/tools/ci_build/build.py
93
105
index 31f242c..300211b 100644
94
106
--- a/tools/ci_build/build.py
Original file line number Diff line number Diff line change 2
2
version = ' == 1.13.1'
3
3
patch = ' torch-1.13.1.patch'
4
4
dist-type = ' sdist'
5
- install-priority = 2
6
5
7
6
[[rules ]]
8
7
version = ' == 2.2.1'
Original file line number Diff line number Diff line change @@ -89,6 +89,19 @@ index 9bab33b6..4f235d66 100644
89
89
return Slice<py::handle>((py::handle*)begin, (py::handle*) (begin + tv.size()));
90
90
}
91
91
92
+ diff --git a/pyproject.toml b/pyproject.toml
93
+ index 827c03b8..36893a76 100644
94
+ --- a/pyproject.toml
95
+ +++ b/pyproject.toml
96
+ @@ -3,7 +3,7 @@ requires = [
97
+ "setuptools",
98
+ "wheel",
99
+ "astunparse",
100
+ - "numpy",
101
+ + "numpy<2",
102
+ "ninja",
103
+ "pyyaml",
104
+ "setuptools",
92
105
diff --git a/setup.py b/setup.py
93
106
index 2ef8b7f2..1f4efd70 100644
94
107
--- a/setup.py
You can’t perform that action at this time.
0 commit comments