File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change
1
+ pyqtgraph-0.13.7
2
+
3
+ ## What's Changed
4
+
5
+ * test_PolyLineROI now passes on non-AMD64 platforms by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/2999
6
+ * Add note about NaN to int conversion by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/3007
7
+ * remove functions.try_fastpath_argb as it triggered segfaults by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/3008
8
+ * Allow users to specify FillRule for FillBetweenItem, undo regressionfrom #2971 by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/3006
9
+
1
10
pyqtgraph-0.13.6
2
11
3
12
## What's Changed
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
6
6
[tool .black ]
7
7
line-length = 88
8
- target-version = [' py310 ' ]
8
+ target-version = [' py39 ' ]
9
9
include = ' \.pyi?$'
10
10
exclude = '''
11
11
@@ -30,7 +30,7 @@ exclude = '''
30
30
profile = " black"
31
31
honor_noqa = true
32
32
color_output = true
33
- py_version = 310
33
+ py_version = 39
34
34
src_paths = [" pyqtgraph" , " tests" ]
35
35
skip_glob = [" **/*Template*.py" , " **/colorama" ]
36
36
skip_gitignore = true
Original file line number Diff line number Diff line change 3
3
www.pyqtgraph.org
4
4
"""
5
5
6
- __version__ = '0.13.7dev0 '
6
+ __version__ = '0.13.7 '
7
7
8
8
### import all the goodies and add some helper functions for easy CLI use
9
9
Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ def run(self):
123
123
'style' : helpers .StyleCommand
124
124
},
125
125
packages = find_namespace_packages (include = ['pyqtgraph' , 'pyqtgraph.*' ]),
126
- python_requires = ">=3.10 " ,
126
+ python_requires = ">=3.9 " ,
127
127
package_dir = {"pyqtgraph" : "pyqtgraph" },
128
128
package_data = {
129
129
'pyqtgraph.examples' : ['optics/*.gz' , 'relativity/presets/*.cfg' ],
@@ -135,7 +135,7 @@ def run(self):
135
135
],
136
136
},
137
137
install_requires = [
138
- 'numpy>=1.23 .0' ,
138
+ 'numpy>=1.22 .0' ,
139
139
],
140
140
** setupOpts
141
141
)
You can’t perform that action at this time.
0 commit comments