Skip to content

Commit

Permalink
1.0.3 (2021-10-14)
Browse files Browse the repository at this point in the history
------------------
- Setup update.
  • Loading branch information
karpierz committed Oct 14, 2021
1 parent efd7187 commit f3c70a1
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 19 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.0.3 (2021-10-14)
------------------
- Setup update.

1.0.2 (2021-07-20)
------------------
- First functional release.
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ include README.rst
include CHANGES.rst
include LICENSE
include pyproject.toml
include .readthedocs.yml

graft docs

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[build-system]
requires = ["setuptools>=57.4.0", "wheel>=0.36.2", "packaging>=21.0.0", "tox>=3.23.1"]
requires = ["setuptools>=57.4.0", "wheel>=0.37.0", "packaging>=21.0.0", "tox>=3.24.4"]
build-backend = "setuptools.build_meta"
37 changes: 20 additions & 17 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[metadata]
name = pkg_about
version = 1.0.2
version = 1.0.3
description = Shares Python package metadata at runtime.
url = https://pypi.org/project/pkg_about/
download_url = https://pypi.org/project/pkg_about/
Expand Down Expand Up @@ -45,8 +45,8 @@ install_requires =
# mandatory
setuptools>=42.0.2
packaging>=21.0.0
importlib-resources>=5.2.0
importlib-metadata>=4.6.1
importlib-resources>=5.2.2
importlib-metadata>=4.6.4
# others
packages = find:
package_dir =
Expand All @@ -59,15 +59,15 @@ where = src

[options.extras_require]
doc =
Sphinx>=4.1.1
sphinx-tabs>=3.1.0
Sphinx>=4.2.0
sphinx-tabs>=3.2.0
sphinxcontrib-spelling>=7.2.1
restructuredtext-lint>=1.3.2
test =
deepdiff>=5.5.0
deepdiff>=5.6.0

[options.package_data]
aptiv =
pkg_about =

[options.entry_points]
console_scripts =
Expand All @@ -91,7 +91,7 @@ warning-is-error = True

[tox:tox]
envlist = py{36,37,38,39}, coverage, docs
minversion = 3.23.1
minversion = 3.24.4
isolated_build = True
skip_missing_interpreters = true
requires =
Expand All @@ -102,9 +102,9 @@ requires =

[base]
setup_requires =
pip>=21.1.3
pip>=21.2.4
setuptools>=57.4.0
wheel>=0.36.2
wheel>=0.37.0
packagesubdir = pkg_about

[testenv]
Expand Down Expand Up @@ -134,8 +134,8 @@ commands =
{envpython} -m coverage html
deps =
{[testenv]deps}
coverage>=5.5.0
diff-cover>=6.2.0
coverage>=6.0.2
diff-cover>=6.4.2

[testenv:docs]
basepython = python3.7
Expand All @@ -150,6 +150,9 @@ deps =
[testenv:build]
basepython = python3.7
setenv =
PKG_NAME=`{envpython} setup.py --fullname`
PKG_DIST=`{envpython} -c 'print("""{env:PKG_NAME}""".strip(), end="")'`
PKG_PVER=`{envpython} -c 'import platform ; print("".join(platform.python_version_tuple()[:2]))'`
commands =
{[testenv]commands}
{[testenv:docs]commands}
Expand All @@ -163,7 +166,7 @@ extras =
deps =
{[testenv]deps}
{[testenv:docs]deps}
twine>=3.4.1
twine>=3.4.2

[testenv:publish]
basepython = python3.7
Expand All @@ -177,7 +180,7 @@ extras =
{[testenv:build]extras}
deps =
{[testenv:build]deps}
twine>=3.4.1
twine>=3.4.2

[testenv:lint]
basepython = python3.7
Expand All @@ -186,9 +189,9 @@ commands =
extras =
deps =
{[testenv]deps}
flake8>=3.9.2
flake8>=4.0.1
flake8-docstrings>=1.6.0
pep8-naming>=0.12.0
pep8-naming>=0.12.1
flake8-builtins>=1.5.3

[coverage:run]
Expand Down Expand Up @@ -225,7 +228,7 @@ ignore = E126,E203,E221,E251,E302,E701,E702,E731,
N806, N802, N803, N801,
I100
# (e.g. E4,W) default: E121,E123, 126, 226,E24, 704
#select =
#select =
#select = E,W,F,N,I
output-file = .tox/lint/flake8out.txt
count = True
Expand Down
2 changes: 1 addition & 1 deletion src/pkg_about/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# https://opensource.org/licenses/Zlib

__import__("_about", globals=globals(), level=1).about()
__copyright__ = f"Copyright (c) 2020-2021 {__author__}"
__copyright__ = f"Copyright (c) 2020-2021 {__author__}" # noqa

0 comments on commit f3c70a1

Please sign in to comment.