File tree 4 files changed +22
-4
lines changed
4 files changed +22
-4
lines changed Original file line number Diff line number Diff line change
1
+ .. _v1.2.0 :
2
+
3
+ 1.2.0
4
+ =====
5
+
6
+ Fixes
7
+ .....
8
+
9
+ * Fixed being unable to build from source using the PyPI package
10
+
11
+ Changes
12
+ .......
13
+
14
+ * Dropped support for Python 3.6
15
+ * Added support for Python 3.10
Original file line number Diff line number Diff line change 3
3
import re
4
4
5
5
6
- __version__ = '1.2.0 '
6
+ __version__ = '1.2.1 '
7
7
8
8
9
9
VERSION_PATTERN = r"""
Original file line number Diff line number Diff line change 1
- cython
2
- numpy >= 1.20.0
1
+ numpy >= 1.20.0 ; python_version == '3.7'
2
+ numpy >= 1.22.0 ; python_version >= '3.8'
Original file line number Diff line number Diff line change @@ -142,7 +142,10 @@ def setup_oj():
142
142
"Topic :: Software Development :: Libraries" ,
143
143
],
144
144
python_requires = ">=3.7" ,
145
- install_requires = ["numpy>=1.20" ],
145
+ install_requires = [
146
+ "numpy >= 1.20; python_version == '3.7'" ,
147
+ "numpy >= 1.22; python_version >= '3.8'" ,
148
+ ],
146
149
ext_modules = [ext ],
147
150
# Plugin registrations
148
151
entry_points = {
You can’t perform that action at this time.
0 commit comments