Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit a470244

Browse files
committed
Bump version to v1.4.0.
1 parent 13aec99 commit a470244

8 files changed

Lines changed: 15 additions & 26 deletions

File tree

.github/workflows/Workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: false
1111
max-parallel: 3
1212
matrix:
13-
python-version: [ 3.6, 3.7, 3.8 ]
13+
python-version: [ 3.6, 3.7, 3.8, 3.9 ]
1414

1515
env:
1616
PYTHON: ${{ matrix.python-version }}

.idea/pyTerminalUI.iml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
# -- Project information -----------------------------------------------------
2323

2424
project = 'pyTerminalUI'
25-
copyright = '2007-2020, Patrick Lehmann'
25+
copyright = '2007-2021, Patrick Lehmann'
2626
author = 'Patrick Lehmann'
2727

2828
# The full version, including alpha/beta/rc tags
29-
release = 'v1.3'
29+
release = 'v1.4'
3030

3131

3232
# -- General configuration ---------------------------------------------------

pyTerminalUI/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*-
2-
# vim: tabstop=2:shiftwidth=2:noexpandtab
3-
# kate: tab-width 2; replace-tabs off; indent-width 2;
41
# =============================================================================
52
# _____ _ _ _ _ ___
63
# _ __ _ |_ _|__ _ __ _ __ ___ (_)_ __ __ _| | | | |_ _|
@@ -19,7 +16,7 @@
1916
#
2017
# License:
2118
# ============================================================================
22-
# Copyright 2017-2019 Patrick Lehmann - Bötzingen, Germany
19+
# Copyright 2017-2021 Patrick Lehmann - Bötzingen, Germany
2320
#
2421
# Licensed under the Apache License, Version 2.0 (the "License");
2522
# you may not use this file except in compliance with the License.

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
colorama>=0.4.3
22

3-
pyExceptions>=1.0.0
4-
pyMetaClasses>=1.2.0
3+
pyExceptions>=1.0.1
4+
pyMetaClasses>=1.2.1

setup.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*-
2-
# vim: tabstop=2:shiftwidth=2:noexpandtab
3-
# kate: tab-width 2; replace-tabs off; indent-width 2;
41
# =============================================================================
52
# _____ _ _ _ _ ___
63
# _ __ _ |_ _|__ _ __ _ __ ___ (_)_ __ __ _| | | | |_ _|
@@ -16,7 +13,7 @@
1613
#
1714
# License:
1815
# ============================================================================
19-
# Copyright 2017-2020 Patrick Lehmann - Bötzingen, Germany
16+
# Copyright 2017-2021 Patrick Lehmann - Bötzingen, Germany
2017
#
2118
# Licensed under the Apache License, Version 2.0 (the "License");
2219
# you may not use this file except in compliance with the License.
@@ -50,7 +47,7 @@
5047

5148
setuptools.setup(
5249
name=projectName,
53-
version="1.3.4",
50+
version="1.4.0",
5451

5552
author="Patrick Lehmann",
5653
author_email="Paebbels@gmail.com",
@@ -77,11 +74,12 @@
7774
"Programming Language :: Python :: 3.6",
7875
"Programming Language :: Python :: 3.7",
7976
"Programming Language :: Python :: 3.8",
77+
"Programming Language :: Python :: 3.9",
8078
"Development Status :: 5 - Production/Stable",
8179
"Intended Audience :: Developers",
8280
"Topic :: Utilities"
8381
],
84-
keywords="Python3 Path Generic-Library",
82+
keywords="Python3 Terminal Shell Text User Interface TUI",
8583

8684
python_requires='>=3.6',
8785
install_requires=requirements,

tests/unit/TerminalUI.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*-
2-
# vim: tabstop=2:shiftwidth=2:noexpandtab
3-
# kate: tab-width 2; replace-tabs off; indent-width 2;
41
# =============================================================================
52
# _____ _ _ _ _ ___
63
# _ __ _ |_ _|__ _ __ _ __ ___ (_)_ __ __ _| | | | |_ _|
@@ -19,7 +16,7 @@
1916
#
2017
# License:
2118
# ============================================================================
22-
# Copyright 2017-2020 Patrick Lehmann - Bötzingen, Germany
19+
# Copyright 2017-2021 Patrick Lehmann - Bötzingen, Germany
2320
# Copyright 2007-2016 Patrick Lehmann - Dresden, Germany
2421
#
2522
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -41,7 +38,7 @@
4138
pyAttributes
4239
############
4340
44-
:copyright: Copyright 2007-2020 Patrick Lehmann - Bötzingen, Germany
41+
:copyright: Copyright 2007-2021 Patrick Lehmann - Bötzingen, Germany
4542
:license: Apache License, Version 2.0
4643
"""
4744
from unittest import TestCase

tests/unit/__init__.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# EMACS settings: -*- tab-width: 2; indent-tabs-mode: t -*-
2-
# vim: tabstop=2:shiftwidth=2:noexpandtab
3-
# kate: tab-width 2; replace-tabs off; indent-width 2;
41
# =============================================================================
52
# _____ _ _ _ _ ___
63
# _ __ _ |_ _|__ _ __ _ __ ___ (_)_ __ __ _| | | | |_ _|
@@ -19,7 +16,7 @@
1916
#
2017
# License:
2118
# ============================================================================
22-
# Copyright 2017-2020 Patrick Lehmann - Bötzingen, Germany
19+
# Copyright 2017-2021 Patrick Lehmann - Bötzingen, Germany
2320
# Copyright 2007-2016 Patrick Lehmann - Dresden, Germany
2421
#
2522
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -41,6 +38,6 @@
4138
pyAttributes
4239
############
4340
44-
:copyright: Copyright 2007-2020 Patrick Lehmann - Bötzingen, Germany
41+
:copyright: Copyright 2007-2021 Patrick Lehmann - Bötzingen, Germany
4542
:license: Apache License, Version 2.0
4643
"""

0 commit comments

Comments
 (0)