Skip to content

Commit 8385bd7

Browse files
authored
Merge pull request pyqtgraph#3009 from j9ac9k/prep-for-0.13.7-release
Prepare for 0.13.7 release
2 parents 1bd5c01 + 3340ef1 commit 8385bd7

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
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+
110
pyqtgraph-0.13.6
211

312
## What's Changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55

66
[tool.black]
77
line-length = 88
8-
target-version = ['py310']
8+
target-version = ['py39']
99
include = '\.pyi?$'
1010
exclude = '''
1111
@@ -30,7 +30,7 @@ exclude = '''
3030
profile = "black"
3131
honor_noqa = true
3232
color_output = true
33-
py_version = 310
33+
py_version = 39
3434
src_paths = ["pyqtgraph", "tests"]
3535
skip_glob = ["**/*Template*.py", "**/colorama"]
3636
skip_gitignore = true

pyqtgraph/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
www.pyqtgraph.org
44
"""
55

6-
__version__ = '0.13.7dev0'
6+
__version__ = '0.13.7'
77

88
### import all the goodies and add some helper functions for easy CLI use
99

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def run(self):
123123
'style': helpers.StyleCommand
124124
},
125125
packages=find_namespace_packages(include=['pyqtgraph', 'pyqtgraph.*']),
126-
python_requires=">=3.10",
126+
python_requires=">=3.9",
127127
package_dir={"pyqtgraph": "pyqtgraph"},
128128
package_data={
129129
'pyqtgraph.examples': ['optics/*.gz', 'relativity/presets/*.cfg'],
@@ -135,7 +135,7 @@ def run(self):
135135
],
136136
},
137137
install_requires = [
138-
'numpy>=1.23.0',
138+
'numpy>=1.22.0',
139139
],
140140
**setupOpts
141141
)

0 commit comments

Comments
 (0)