Skip to content

Commit

Permalink
Merge pull request pyqtgraph#3002 from j9ac9k/post-0.13.6-release
Browse files Browse the repository at this point in the history
Post 0.13.6 housekeeping
  • Loading branch information
j9ac9k authored Apr 22, 2024
2 parents 891f623 + eb82180 commit 88c3127
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@ This project supports:

Currently this means:

* Python 3.9+
* Python 3.10+
* Qt 5.15, 6.2+
* [PyQt5](https://www.riverbankcomputing.com/software/pyqt/),
[PyQt6](https://www.riverbankcomputing.com/software/pyqt/),
[PySide2](https://wiki.qt.io/Qt_for_Python), or
[PySide6](https://wiki.qt.io/Qt_for_Python)
* [`numpy`](https://github.com/numpy/numpy) 1.22+
* [`numpy`](https://github.com/numpy/numpy) 1.23+

### Optional added functionalities

Expand All @@ -45,7 +45,7 @@ Through 3rd part libraries, additional functionality may be added to PyQtGraph,
| Library | Added functionality |
|----------------|-|
| [`scipy`] | <ul><li> Image processing through [`ndimage`]</li><li> Data array filtering through [`signal`] </li><ul> |
| [`pyopengl`] | <ul><li> 3D graphics </li><li> Faster image processing </li><li>Note: on macOS Big Sur only works with python 3.9.1+</li></ul> |
| [`pyopengl`] | <ul><li> 3D graphics </li><li> Faster image processing </li></ul> |
| [`h5py`] | <ul><li> Export in hdf5 format </li></ul> |
| [`colorcet`] | <ul><li> Add a collection of perceptually uniform colormaps </li></ul> |
| [`matplotlib`] | <ul><li> Export of PlotItem in matplotlib figure </li><li> Add matplotlib collection of colormaps </li></ul> |
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.6'
__version__ = '0.13.7dev0'

### 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.9",
python_requires=">=3.10",
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.22.0',
'numpy>=1.23.0',
],
**setupOpts
)

0 comments on commit 88c3127

Please sign in to comment.