-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support TF 2.12 and numpy>=1.22 (#99)
Co-authored-by: ST John <[email protected]> Co-authored-by: Uri Granta <[email protected]>
- Loading branch information
1 parent
3eeec8a
commit 47ed46a
Showing
8 changed files
with
55 additions
and
10 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
# | ||
"""Adds __version__""" | ||
|
||
__version__ = "0.4.1" | ||
__version__ = "0.4.2" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Test requirements specific to Python 3.7 | ||
|
||
# Code quality tools: | ||
black==21.7b0 | ||
codecov | ||
click==8.0.4 | ||
flake8==4.0.1 | ||
isort==5.10.1 | ||
mypy | ||
pytest | ||
pytest-cov | ||
pytest-random-order | ||
pytest-mock | ||
|
||
# For mypy stubs: | ||
types-Deprecated | ||
numpy<1.22.0 # Newer versions of numpy are not compatible with Python 3.7. | ||
|
||
tqdm | ||
|
||
# Notebook tests: | ||
jupytext | ||
nbformat | ||
nbconvert | ||
jupyter_client | ||
ipykernel | ||
tornado |