Skip to content

Commit

Permalink
fix requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
jquast committed Nov 13, 2023
1 parent 9e841ca commit 0d044c8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
project = "ucs-detect"
copyright = "2023, Jeff Quast"
author = "Jeff Quast"
release = "1.0.4"
release = "1.0.5"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@ def main():
"""Setup.py entry point."""
setuptools.setup(
name='ucs_detect',
version='1.0.4',
version='1.0.5',
description=(
"Detects Unicode support of an interactive terminal"),
long_description=codecs.open(
_get_here('README.rst'), 'rb', 'utf8').read(),
author='Jeff Quast',
author_email='contact@jeffquast.com',
install_requires=('blessed<2', 'wcwidth<1', 'PyYaml<7'),
install_requires=('blessed<2', 'wcwidth<1,>=0.2.10', 'PyYaml<7'),
license='MIT',
packages=['ucs_detect'],
url='https://github.com/jquast/ucs-detect',
Expand Down

0 comments on commit 0d044c8

Please sign in to comment.