Skip to content

Commit

Permalink
Merge pull request #3009 from j9ac9k/prep-for-0.13.7-release
Browse files Browse the repository at this point in the history
Prepare for 0.13.7 release
  • Loading branch information
j9ac9k committed Apr 29, 2024
2 parents 1bd5c01 + 3340ef1 commit 8385bd7
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
pyqtgraph-0.13.7

## What's Changed

* test_PolyLineROI now passes on non-AMD64 platforms by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/2999
* Add note about NaN to int conversion by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/3007
* remove functions.try_fastpath_argb as it triggered segfaults by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/3008
* Allow users to specify FillRule for FillBetweenItem, undo regressionfrom #2971 by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/3006

pyqtgraph-0.13.6

## What's Changed
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"

[tool.black]
line-length = 88
target-version = ['py310']
target-version = ['py39']
include = '\.pyi?$'
exclude = '''
Expand All @@ -30,7 +30,7 @@ exclude = '''
profile = "black"
honor_noqa = true
color_output = true
py_version = 310
py_version = 39
src_paths = ["pyqtgraph", "tests"]
skip_glob = ["**/*Template*.py", "**/colorama"]
skip_gitignore = true
Expand Down
2 changes: 1 addition & 1 deletion pyqtgraph/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
www.pyqtgraph.org
"""

__version__ = '0.13.7dev0'
__version__ = '0.13.7'

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

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ def run(self):
'style': helpers.StyleCommand
},
packages=find_namespace_packages(include=['pyqtgraph', 'pyqtgraph.*']),
python_requires=">=3.10",
python_requires=">=3.9",
package_dir={"pyqtgraph": "pyqtgraph"},
package_data={
'pyqtgraph.examples': ['optics/*.gz', 'relativity/presets/*.cfg'],
Expand All @@ -135,7 +135,7 @@ def run(self):
],
},
install_requires = [
'numpy>=1.23.0',
'numpy>=1.22.0',
],
**setupOpts
)

0 comments on commit 8385bd7

Please sign in to comment.