File tree Expand file tree Collapse file tree 4 files changed +22
-4
lines changed Expand file tree Collapse file tree 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 33import re
44
55
6- __version__ = '1.2.0 '
6+ __version__ = '1.2.1 '
77
88
99VERSION_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():
142142 "Topic :: Software Development :: Libraries" ,
143143 ],
144144 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+ ],
146149 ext_modules = [ext ],
147150 # Plugin registrations
148151 entry_points = {
You can’t perform that action at this time.
0 commit comments