Skip to content

Commit f03681e

Browse files
committed
Setting typing-inspect version to 0.6.0 to fix 0.7.0 bug and incrementing Tap version to 1.6.3
1 parent 1c2c0f5 commit f03681e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
package_data={'tap': ['py.typed']},
3030
install_requires=[
3131
'typing_extensions >= 3.7.4',
32-
'typing-inspect >= 0.5'
32+
'typing-inspect == 0.6.0'
3333
],
3434
tests_require=['pytest'],
3535
classifiers=[

tap/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__all__ = ['__version__']
22

33
# major, minor, patch
4-
version_info = 1, 6, 2
4+
version_info = 1, 6, 3
55

66
# Nice string for the version
77
__version__ = '.'.join(map(str, version_info))

0 commit comments

Comments
 (0)