Skip to content

Commit 8e61bf3

Browse files
authored
Merge pull request pyqtgraph#3010 from j9ac9k/post-0.13.7-release
Bump to dev version
2 parents 8385bd7 + cc6a402 commit 8e61bf3

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines 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 = ['py39']
8+
target-version = ['py310']
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 = 39
33+
py_version = 310
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.7'
6+
__version__ = '0.13.8dev0'
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.9",
126+
python_requires=">=3.10",
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.22.0',
138+
'numpy>=1.23.0',
139139
],
140140
**setupOpts
141141
)

0 commit comments

Comments
 (0)