Skip to content

Commit

Permalink
Setting typing-inspect version to 0.6.0 to fix 0.7.0 bug and incremen…
Browse files Browse the repository at this point in the history
…ting Tap version to 1.6.3
  • Loading branch information
swansonk14 committed Jun 7, 2021
1 parent 1c2c0f5 commit f03681e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
package_data={'tap': ['py.typed']},
install_requires=[
'typing_extensions >= 3.7.4',
'typing-inspect >= 0.5'
'typing-inspect == 0.6.0'

This comment has been minimized.

Copy link
@Repentinus

Repentinus Jun 7, 2021

0.7.1 has been released half an hour ago to fix this issue.

This comment has been minimized.

Copy link
@martinjm97

martinjm97 Jun 7, 2021

Collaborator

Awesome! We'll test it out and then remove the hard-coded version. Thank you for letting us know.

],
tests_require=['pytest'],
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion tap/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__all__ = ['__version__']

# major, minor, patch
version_info = 1, 6, 2
version_info = 1, 6, 3

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

0 comments on commit f03681e

Please sign in to comment.