Skip to content

Commit

Permalink
1.1.1rc6 (2020-10-17)
Browse files Browse the repository at this point in the history
---------------------
- Drop support for Python 3.5.
- Setup general update and cleanup.
- Setup: fix an improper dependencies versions.
- Fixed docs setup.
  • Loading branch information
karpierz committed Oct 17, 2020
1 parent 906cb24 commit 7936db4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 8 deletions.
6 changes: 2 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
Changelog
=========

1.1.1rc5 (2020-09-30)
1.1.1rc6 (2020-10-17)
---------------------
- Drop support for Python 3.5.

1.1.1rc2 (2020-09-22)
---------------------
- Setup general update and cleanup.
- Setup: fix an improper dependencies versions.
- Fixed docs setup.

1.1.0rc9 (2019-11-13)
---------------------
Expand Down
1 change: 0 additions & 1 deletion docs/README.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
.. _readme:
.. include:: ../README.rst
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
QQt documentation
=================

.. _readme:
.. include:: README.rst

Changes
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ long_description = file: README.rst, CHANGES.rst
long_description_content_type = text/x-rst; charset=UTF-8
project_urls =
Documentation=https://QQt.readthedocs.io/
Source=https://github.com/karpierz/QQt/
Source=https://github.com/karpierz/QQt
Issues=https://github.com/karpierz/QQt/issues
license_files = LICENSE
keywords = QQt, PySide2, PySide, PyQt5, PyQt4, PyQt, Qt
platforms = any
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=5))
releaselevel="candidate", serial=6))
__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
2 changes: 1 addition & 1 deletion tests/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@


def main(argv=sys.argv):
print("Running tests", "\n", file=sys.stderr)
print("Running tests\n", file=sys.stderr)
tests = unittest.defaultTestLoader.discover(start_dir=test_dir,
top_level_dir=top_dir)
result = unittest.TextTestRunner(verbosity=1).run(tests)
Expand Down

0 comments on commit 7936db4

Please sign in to comment.