Skip to content

Commit

Permalink
1.1.1rc5 (2020-09-30)
Browse files Browse the repository at this point in the history
---------------------
- Drop support for Python 3.5.
  • Loading branch information
karpierz committed Oct 2, 2020
1 parent 068385a commit bb5ddef
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Changelog
=========

1.1.1rc4 (2020-09-22)
1.1.1rc5 (2020-09-30)
---------------------
- Drop support for Python 3.5.

Expand Down
2 changes: 1 addition & 1 deletion docs/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.. _CHANGES:
.. _changes:
.. include:: ../CHANGES.rst
1 change: 1 addition & 0 deletions docs/README.rst
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.. _readme:
.. include:: ../README.rst
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ license_files = LICENSE
keywords = QQt, PySide2, PySide, PyQt5, PyQt4, PyQt, Qt
platforms = any
classifiers =
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: zlib/libpng License
Operating System :: OS Independent
Expand All @@ -27,7 +27,7 @@ classifiers =
Topic :: Software Development :: Libraries :: Python Modules

[options]
python_requires = >=3.6.0,<3.8.0
python_requires = >=3.6.0,<=3.7.0
setup_requires =
setuptools>=42.0.2
install_requires =
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=4))
releaselevel="candidate", serial=5))
__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
4 changes: 2 additions & 2 deletions src/QQt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@
# Licensed under the zlib/libpng License
# https://opensource.org/licenses/Zlib

from .__config__ import origin
from .__about__ import * ; del __about__ # noqa
from .__config__ import origin

import sys
__import__(origin)

QQt = sys.modules[__name__]

# Utils
from .utils import StreamEmitter
from ._utils import StreamEmitter

# Wrapper for origin.

Expand Down
3 changes: 1 addition & 2 deletions src/QQt/utils.py → src/QQt/_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
# Licensed under the zlib/libpng License
# https://opensource.org/licenses/Zlib

from .__config__ import origin

__all__ = ('StreamEmitter',)

from .__config__ import origin
origin = __import__(origin, globals(), locals(), ["QtCore"], 0)


Expand Down

0 comments on commit bb5ddef

Please sign in to comment.