Skip to content

Commit

Permalink
Restore support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Dennis-van-Gils committed Jun 24, 2024
1 parent 85c5229 commit 9290f4a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

1.6.0 (2024-06-24)
------------------
* Restore support for Python 3.6. Was removed by mistake. Versions 1.4.0
and 1.5.0 do support it actually, but only in combination with PyQt5 or
PySide2.

1.5.0 (2024-06-22)
------------------
* Support for Numpy 2.0
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = "Dennis van Gils"

# The full version, including alpha/beta/rc tags
release = "1.5.0"
release = "1.6.0"

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def read(*names, **kwargs):

setup(
name="dvg-qdeviceio",
version="1.5.0",
version="1.6.0",
license="MIT",
description="Hassle-free PyQt/PySide interface for multithreaded data acquisition and communication with an I/O device.",
long_description="%s\n%s"
Expand Down Expand Up @@ -69,7 +69,7 @@ def read(*names, **kwargs):
"laboratory",
"science",
],
python_requires=">=3.7",
python_requires=">=3.6",
install_requires=[
"dvg-debug-functions~=2.5",
"numpy>=1.15,<3.0",
Expand Down
4 changes: 2 additions & 2 deletions src/dvg_qdeviceio.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
__author__ = "Dennis van Gils"
__authoremail__ = "[email protected]"
__url__ = "https://github.com/Dennis-van-Gils/python-dvg-qdeviceio"
__date__ = "22-06-2024"
__version__ = "1.5.0"
__date__ = "24-06-2024"
__version__ = "1.6.0"
# pylint: disable=protected-access, too-many-lines

import sys
Expand Down

0 comments on commit 9290f4a

Please sign in to comment.