Skip to content

Commit

Permalink
1.1.1rc3 (2020-09-22)
Browse files Browse the repository at this point in the history
---------------------
- Drop support for Python 3.5.
  • Loading branch information
karpierz committed Sep 22, 2020
1 parent bf8e317 commit 7018405
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
Changelog
=========

1.1.1rc3 (2020-09-22)
---------------------
- Drop support for Python 3.5.

1.1.1rc2 (2020-09-22)
---------------------
- Setup: fix an improper dependencies versions.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Installation

Prerequisites:

+ Python 3.5 or higher
+ Python 3.6 or higher

* https://www.python.org/
* 3.7 is a primary test environment.
Expand Down
11 changes: 5 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ classifiers =
Natural Language :: Polish
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3 :: Only
Expand All @@ -28,11 +27,11 @@ classifiers =
Topic :: Software Development :: Libraries :: Python Modules

[options]
python_requires = >=3.5.0,<3.8.0
python_requires = >=3.6.0,<3.8.0
setup_requires =
setuptools>=41.2.0
setuptools>=42.0.2
install_requires =
setuptools>=41.2.0
setuptools>=42.0.2
QtPy~=1.9.0
packages = find:
package_dir =
Expand Down Expand Up @@ -72,7 +71,7 @@ warning-is-error = True
#

[tox:tox]
envlist = py{35,36,37}, docs
envlist = py{36,37}, docs
minversion = 3.13.2
requires =
tox-venv>=0.4.0
Expand Down Expand Up @@ -123,7 +122,7 @@ deps =
flake8>=3.8.3
flake8-docstrings>=1.5.0
pep8-naming>=0.11.1
flake8-builtins>=1.4.1
flake8-builtins>=1.5.3

[testenv:publish]
basepython = python3.7
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=2))
releaselevel="candidate", serial=3))
__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 7018405

Please sign in to comment.