This repository has been archived by the owner on May 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make typing introspection compatible with Python 3.7+ (#37)
Summary: This PR makes Nubia compatible with Python 3.7+ by taking into account the changes introduced by [PEP 560.](https://www.python.org/dev/peps/pep-0560/) The implementation was heavily inspired by [ilevkivskyi/typing_inspect](https://github.com/ilevkivskyi/typing_inspect) project. Also run TravisCI tests against Python 3.7. Closes #2. Pull Request resolved: #37 Reviewed By: AhmedSoliman Differential Revision: D15197740 Pulled By: ylectric fbshipit-source-id: ff8f0df842aed47ad55f57fefe6f781a36033d25
- Loading branch information
1 parent
0878b43
commit 088e6f3
Showing
9 changed files
with
178 additions
and
120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
dist: xenial | ||
language: python | ||
python: | ||
- "3.6" | ||
- "3.7" | ||
|
||
install: | ||
- pip install codecov | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.