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

Commit 63e44cc

Browse files
committed
Further changes and fixes.
(cherry picked from commit aa4abe7)
1 parent 9801e33 commit 63e44cc

5 files changed

Lines changed: 12 additions & 14 deletions

File tree

doc/conf.py

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121

2222
# -- Project information -----------------------------------------------------
2323

24-
project = 'pyTerminalUI'
24+
project = 'pyTooling.TerminalUI'
2525
copyright = '2007-2021, Patrick Lehmann'
2626
author = 'Patrick Lehmann'
2727

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

3131

3232
# -- General configuration ---------------------------------------------------
@@ -97,8 +97,7 @@
9797
# ==============================================================================
9898
intersphinx_mapping = {
9999
'python': ('https://docs.python.org/3', None),
100-
'pyExceptions': ('http://pyExceptions.readthedocs.io/en/latest', None),
101-
'pyMetaClasses': ('http://pyMetaClasses.readthedocs.io/en/latest', None),
100+
'pyTooling': ('http://pyTooling.github.io/pyTooling', None),
102101
}
103102

104103

@@ -113,10 +112,10 @@
113112
# Sphinx.Ext.ExtLinks
114113
# ==============================================================================
115114
extlinks = {
116-
'issue': ('https://github.com/Paebbels/pyTerminalUI/issues/%s', 'issue #'),
117-
'pull': ('https://github.com/Paebbels/pyTerminalUI/pull/%s', 'pull request #'),
118-
'src': ('https://github.com/Paebbels/pyTerminalUI/blob/master/pyTerminalUI/%s?ts=2', None),
119-
# 'tests': ('https://github.com/Paebbels/pyCallBy/blob/master/test/%s?ts=2', None)
115+
'issue': ('https://github.com/pyTooling/pyTooling,TerminalUI/issues/%s', 'issue #'),
116+
'pull': ('https://github.com/pyTooling/pyTooling,TerminalUI/pull/%s', 'pull request #'),
117+
'src': ('https://github.com/pyTooling/pyTooling,TerminalUI/blob/master/pyTooling,TerminalUI/%s?ts=2', None),
118+
# 'tests': ('https://github.com/pyTooling/pyCallBy/blob/master/test/%s?ts=2', None)
120119
}
121120

122121

doc/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
-r ../requirements.txt
22
# Enforce latest version on ReadTheDocs
3-
sphinx>=4.1.1
3+
sphinx>=4.2.0
44

55
# Sphinx Themes
66
sphinx-rtd-theme>=0.5.2

pyTooling/TerminalUI/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
from pyTooling.MetaClasses import Singleton
3939

4040

41-
__version__ = "1.4.2"
41+
__version__ = "1.5.0"
4242

4343

4444
from pydecor import export

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
gitHubNamespace = "pyTooling"
3939
projectName = "TerminalUI"
4040
projectNameWithPrefix = "pyTooling." + projectName
41-
version = "1.4.2"
41+
version = "1.5.0"
4242

4343
# Read README for upload to PyPI
4444
readmeFile = Path("README.md")
@@ -52,8 +52,7 @@
5252

5353
# Derive URLs
5454
sourceCodeURL = f"https://github.com/{gitHubNamespace}/{projectName}"
55-
#documentationURL = f"https://{gitHubNamespace}.github.io/{projectName}"
56-
documentationURL = f"https://{projectName}.readthedocs.io/en/latest/"
55+
documentationURL = f"https://{gitHubNamespace}.github.io/{projectName}"
5756

5857
# Assemble all package information
5958
setuptools_setup(

tests/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
-r ../requirements.txt
22

33
# Coverage collection
4-
Coverage>=5.5
4+
Coverage>=6.1
55

66
# Test Runner
77
pytest>=6.2.4

0 commit comments

Comments
 (0)