Skip to content

Commit

Permalink
1.1.1rc2 (2020-09-22)
Browse files Browse the repository at this point in the history
---------------------
- Setup: fix an improper dependencies versions.
  • Loading branch information
karpierz committed Sep 22, 2020
1 parent 57c3c52 commit bf8e317
Show file tree
Hide file tree
Showing 9 changed files with 46 additions and 16 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.1rc2 (2020-09-22)
---------------------
- Setup: fix an improper dependencies versions.

1.1.1rc1 (2020-09-17)
---------------------
- Add support for Python 3.8 and 3.9.
Expand Down
13 changes: 7 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ Overview

TBD...

`PyPI record`_.

Installation
============

Expand All @@ -25,7 +27,7 @@ Prerequisites:

To install run:

.. parsed-literal::
.. parsed-literal::
python -m pip install --upgrade |package|
Expand All @@ -44,27 +46,26 @@ Installation from sources:

clone the sources:

.. parsed-literal::
.. parsed-literal::
git clone |respository| |package|
and run:

.. parsed-literal::
.. parsed-literal::
python -m pip install ./|package|
or on development mode:

.. parsed-literal::
.. parsed-literal::
python -m pip install --editable ./|package|
License
=======

| Copyright (c) 2012-2020 Adam Karpierz
|
| Licensed under the zlib/libpng License
| https://opensource.org/licenses/Zlib
| Please refer to the accompanying LICENSE file.
Expand All @@ -77,5 +78,5 @@ Authors
.. |package| replace:: QQt
.. |package_bold| replace:: **QQt**
.. |respository| replace:: https://github.com/karpierz/QQt.git
.. _PyPI record: https://pypi.org/project/QQt/
.. _development page: https://github.com/karpierz/QQt/
.. _PyPI record: https://pypi.org/project/QQt/
2 changes: 2 additions & 0 deletions docs/CHANGES.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.. _CHANGES:
.. include:: ../CHANGES.rst
1 change: 1 addition & 0 deletions docs/README.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.. include:: ../README.rst
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def setup(app):
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
html_theme = 'sphinxdoc' # 'alabaster'
html_theme = 'bizstyle' # 'alabaster'

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
17 changes: 15 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
QQt documentation
=================

.. include:: ../README.rst
.. include:: ../CHANGES.rst
.. include:: README.rst

Changes
=======

.. toctree::
:maxdepth: 2

CHANGES.rst

Indices and tables
==================

* :ref:`genindex`
* :ref:`search`
19 changes: 14 additions & 5 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,13 @@ classifiers =
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: Stackless
Topic :: Software Development :: Libraries :: Python Modules

[options]
python_requires = >=3.5.0,<4.0.0
python_requires = >=3.5.0,<3.8.0
setup_requires =
setuptools>=41.2.0
install_requires =
Expand Down Expand Up @@ -125,7 +123,18 @@ deps =
flake8>=3.8.3
flake8-docstrings>=1.5.0
pep8-naming>=0.11.1
flake8-builtins>=1.5.3
flake8-builtins>=1.4.1

[testenv:publish]
basepython = python3.7
commands =
{envpython} setup.py sdist
{envpython} -m twine check dist/*
{envpython} -m twine upload dist/*
extras =
deps =
{[testenv]deps}
twine>=3.2.0

[flake8]
filename = *.py,*.pyx
Expand All @@ -134,7 +143,7 @@ filename = *.py,*.pyx
max-line-length = 99
ignore = E126,E203,E221,E251,E302,E701,E702,E731,
E122,E127,E128,E222,E272,E241,E266, E226,E704,
D100, D101, D102, D103, D104, D400,
D100, D101, D102, D103, D104, D400, D401, D202,
N806, N802, N803,
I100
# (e.g. E4,W) default: E121,E123, 126, 226,E24, 704
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=1))
releaselevel="candidate", serial=2))
__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 src/QQt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# https://opensource.org/licenses/Zlib

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

import sys
__import__(origin)
Expand Down

0 comments on commit bf8e317

Please sign in to comment.