Skip to content

Commit

Permalink
1.1.1rc7 (2020-10-18)
Browse files Browse the repository at this point in the history
---------------------
  • Loading branch information
karpierz committed Oct 18, 2020
1 parent 7936db4 commit 930e22d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 15 deletions.
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/.tox/
/build/
/dist/
*.egg-info
*.py[cod]
__pycache__
16 changes: 2 additions & 14 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

1.1.1rc6 (2020-10-17)
1.1.1rc7 (2020-10-18)
---------------------
- Drop support for Python 3.5.
- Setup general update and cleanup.
Expand All @@ -25,31 +25,19 @@ Changelog

1.1.0rc2 (2019-08-02)
---------------------
- StreamEmitter class added.

1.1.0rc1 (2019-07-23)
---------------------
- | Requirements upgrade:
| QtPy to at least 1.9.0
| PySide2 to at least 5.13.0
| PyQt5 to at least 5.13.0
| This allows to have applications that import PySide2 and PyQt5 at the same time
| (which is possible if both bindings are compiled for the same Qt version).
- StreamEmitter class added.

1.0.0b5 (2019-06-10)
--------------------
- Adding setup extras PySide and PyQt for installing PySide2 or PyQt5 backends.

1.0.0b4 (2019-06-06)
--------------------
- Fix a bug for PySide2 as backend.

1.0.0b3 (2019-06-04)
--------------------
- Adding a monkey-patch for vtk.qt (vtk==8.1.x).

1.0.0b2 (2019-05-22)
--------------------
- Fixes and cleanup of setup.

1.0.0b1 (2019-05-22)
Expand Down
2 changes: 1 addition & 1 deletion src/QQt/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
__summary__ = "Wrapper for various PySide2/PyQt5 related packages."
__uri__ = "https://pypi.org/project/QQt/"
__version_info__ = type("version_info", (), dict(major=1, minor=1, micro=1,
releaselevel="candidate", serial=6))
releaselevel="candidate", serial=7))
__version__ = "{0.major}.{0.minor}.{0.micro}{1}{2}".format(__version_info__,
dict(alpha="a", beta="b", candidate="rc", final="",
post=".post", dev=".dev")[__version_info__.releaselevel],
Expand Down

0 comments on commit 930e22d

Please sign in to comment.