From f65fec131feaca4fa5c6f76572c90bb55b1e72f6 Mon Sep 17 00:00:00 2001 From: Humberto Sanchez II Date: Tue, 15 Nov 2022 20:12:03 -0700 Subject: [PATCH] <>[]: [] [] --- requirements.txt | 18 ++++++++++-------- scripts/runmypy.sh | 2 +- scripts/runtests.sh | 2 +- setup.py | 8 ++++---- 4 files changed, 16 insertions(+), 14 deletions(-) diff --git a/requirements.txt b/requirements.txt index 15e714b..5b2a0a3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,16 +1,18 @@ -wheel~=0.37.1 -setuptools==65.5.0 +wheel==0.38.4 +setuptools==65.5.1 twine==4.0.1 build==0.9.0 html-testRunner~=1.2.1 -mypy==0.982 +mypy==0.991 mypy-extensions~= 0.4.3 typing_extensions==4.4.0 -types-setuptools==65.5.0.2 - -pyutmodel==1.1.0 -ogl==0.60.8 -untanglepyut==0.5.5 +types-setuptools==65.5.0.3 wxpython~=4.2.0 + +pyutmodel==1.2.0 +ogl==0.60.9 + +untanglepyut==0.6.0 + diff --git a/scripts/runmypy.sh b/scripts/runmypy.sh index e8378b1..772b2cf 100755 --- a/scripts/runmypy.sh +++ b/scripts/runmypy.sh @@ -13,7 +13,7 @@ changeToProjectRoot echo "current: $(pwd)" -mypy --config-file .mypi.ini --pretty --no-color-output --show-error-codes oglio tests +mypy --config-file .mypi.ini --pretty --no-color-output --show-error-codes --check-untyped-defs oglio tests # mypy --config-file .mypi.ini --pretty --no-color-output --show-error-codes --no-incremental oglio tests # mypy --config-file .mypi.ini --pretty --show-error-codes oglio tests status=$? diff --git a/scripts/runtests.sh b/scripts/runtests.sh index 50136bd..0ee5e65 100755 --- a/scripts/runtests.sh +++ b/scripts/runtests.sh @@ -16,7 +16,7 @@ changeToProjectRoot echo "Travis Build directory: ${TRAVIS_BUILD_DIR}" -python3 -m tests.TestAll +python3 -Wdefault -m tests.TestAll status=$? diff --git a/setup.py b/setup.py index ed63d5d..d713625 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ setup( name="oglio", - version="0.5.10", + version="0.5.15", author_email='Humberto.A.Sanchez.II@gmail.com', maintainer='Humberto A. Sanchez II', maintainer_email='humberto.a.sanchez.ii@gmail.com', @@ -27,8 +27,8 @@ }, install_requires=[ 'wxPython==4.2.0', - 'pyutmodel==1.1.0', - 'ogl==0.60.8', - 'untanglepyut==0.5.5', + 'pyutmodel==1.2.0', + 'ogl==0.60.9', + 'untanglepyut==0.6.0', ], )