We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1c2c0f5 commit f03681eCopy full SHA for f03681e
setup.py
@@ -29,7 +29,7 @@
29
package_data={'tap': ['py.typed']},
30
install_requires=[
31
'typing_extensions >= 3.7.4',
32
- 'typing-inspect >= 0.5'
+ 'typing-inspect == 0.6.0'
33
],
34
tests_require=['pytest'],
35
classifiers=[
tap/_version.py
@@ -1,7 +1,7 @@
1
__all__ = ['__version__']
2
3
# major, minor, patch
4
-version_info = 1, 6, 2
+version_info = 1, 6, 3
5
6
# Nice string for the version
7
__version__ = '.'.join(map(str, version_info))
0 commit comments