Skip to content

Commit

Permalink
Prep for 0.13.3 release (#2692)
Browse files Browse the repository at this point in the history
* Update README, remove test matrix

* Update Changelog for 0.13.3 release

* Set version to release version
  • Loading branch information
j9ac9k committed Apr 14, 2023
1 parent 33f8da2 commit af563a4
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 22 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
pyqtgraph-0.13.3

## What's Changed

### Highlights

* PySide6 6.5 Compatability

### Bug Fixes

* Return float values from QColor in getByIndex by @nickdimitroff in https://github.com/pyqtgraph/pyqtgraph/pull/2648
* GLViewWidget: don't assume mouse tracking is disabled by @pijyoi in https://github.com/pyqtgraph/pyqtgraph/pull/2653
* Tolerate an empty BarGraphItem by @jmakovicka in https://github.com/pyqtgraph/pyqtgraph/pull/2658
* Only apply nan mask workaround for cp version below 10.0. by @koenstrien in https://github.com/pyqtgraph/pyqtgraph/pull/2689

### Misc

* unify ndarray_from_qpolygonf implementation by @pijyoi in https://github.com/pyqtgraph/pyqtgraph/pull/2654
* re-enable tests taking gui thread on PySide6 by @pijyoi in https://github.com/pyqtgraph/pyqtgraph/pull/2657
* inherit GraphicsWidgetAnchor on the left-hand-side by @pijyoi in https://github.com/pyqtgraph/pyqtgraph/pull/2662
* Prepare support for PySide6 drawLines and friends by @pijyoi in https://github.com/pyqtgraph/pyqtgraph/pull/2596
* Avoid changing background colors of text and rows for group parameter… by @ntjess in https://github.com/pyqtgraph/pyqtgraph/pull/2683

### Testing

* Allow macOS to have fudge factor in test_polyROI by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/2687

### Docs
* Update pydata-sphinx-theme and fix warnings by @j9ac9k in https://github.com/pyqtgraph/pyqtgraph/pull/2643
* Bump sphinx-design from 0.3.0 to 0.4.1 in /doc by @dependabot in https://github.com/pyqtgraph/pyqtgraph/pull/2686
* Bump sphinx from 5.3.0 to 6.1.3 in /doc by @dependabot in https://github.com/pyqtgraph/pyqtgraph/pull/2585

## New Contributors
* @nickdimitroff made their first contribution in https://github.com/pyqtgraph/pyqtgraph/pull/2648
* @koenstrien made their first contribution in https://github.com/pyqtgraph/pyqtgraph/pull/2689

**Full Changelog**: https://github.com/pyqtgraph/pyqtgraph/compare/pyqtgraph-0.13.2...pyqtgraph-0.13.3

pyqtgraph-0.13.2

## What's Changed
Expand Down
22 changes: 1 addition & 21 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,10 @@ PyQtGraph
[![Build Status](https://github.com/pyqtgraph/pyqtgraph/workflows/main/badge.svg)](https://github.com/pyqtgraph/pyqtgraph/actions/?query=workflow%3Amain)
[![CodeQL Status](https://github.com/pyqtgraph/pyqtgraph/workflows/codeql/badge.svg)](https://github.com/pyqtgraph/pyqtgraph/actions/?query=workflow%3Acodeql)
[![Documentation Status](https://readthedocs.org/projects/pyqtgraph/badge/?version=latest)](https://pyqtgraph.readthedocs.io/en/latest/?badge=latest)
[![Total alerts](https://img.shields.io/lgtm/alerts/g/pyqtgraph/pyqtgraph.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/pyqtgraph/pyqtgraph/alerts/)
[![Language grade: Python](https://img.shields.io/lgtm/grade/python/g/pyqtgraph/pyqtgraph.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/pyqtgraph/pyqtgraph/context:python)
[![Discord](https://img.shields.io/discord/946624673200893953.svg?label=PyQtGraph&logo=discord)](https://discord.gg/ufTVNNreAZ)
A pure-Python graphics library for PyQt5/PyQt6/PySide2/PySide6

Copyright 2022 PyQtGraph developers
Copyright 2023 PyQtGraph developers

<http://www.pyqtgraph.org>

Expand Down Expand Up @@ -67,24 +65,6 @@ Through 3rd part libraries, additional functionality may be added to PyQtGraph,
[`cupy`]: https://docs.cupy.dev/en/stable/install.html
[`jupyter_rfb`]: https://github.com/vispy/jupyter_rfb

Qt Bindings Test Matrix
-----------------------

The following table represents the python environments we test in our CI system. Our CI system uses Ubuntu 20.04, Windows Server 2019, and macOS 10.15 base images.

| Qt-Bindings |Python 3.8 | Python 3.9 | Python 3.10 |
| :------------- |:---------------------: | :---------------------: | :---------------------: |
| PySide2-5.15 | :white_check_mark: | :white_check_mark: | |
| PyQt5-5.15 | :white_check_mark: | :white_check_mark: | |
| PySide6-6.2 | | :white_check_mark: | |
| PyQt6-6.2 | | :white_check_mark: | |
| PySide6-6.3 | | | :white_check_mark: |
| PyQt6-6.3 | | | :white_check_mark: |

* :x: - Not compatible
* :white_check_mark: - Tested
* No icon means supported configuration but we do not explicitely test it

Support
-------

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.3.dev0'
__version__ = '0.13.3'

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

Expand Down

0 comments on commit af563a4

Please sign in to comment.