-
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.
* Add TF=2.15 and TFP=0.23 * Exclude TF 2.15 with python 3.8 * Use older mypy version with python 3.7 * Use older mypy for py 37, 38, 39 * Exclude TF 2.15 with python 3.9 * Revert "Exclude TF 2.15 with python 3.9" This reverts commit f9d95b5. * Revert "Use older mypy for py 37, 38, 39" This reverts commit 3e4f98c. * Separate requirements for python 3.8 * Include python 3.9 in new requirements file * Fix test by using sets directly with id Behavior of tensorflow ObjectIdentitySet has change in 2.15, resulting in the set equality comparing wrappers instead of wrapped values. See tensorflow/tensorflow@bc28335. * Also include intermediate TF versions * Add exclude * Add exclude * Fix tfp versions
- Loading branch information
1 parent
47ed46a
commit 83dafb0
Showing
8 changed files
with
62 additions
and
14 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.2" | ||
__version__ = "0.4.3" |
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.8 and 3.9 | ||
|
||
# Code quality tools: | ||
black==21.7b0 | ||
codecov | ||
click==8.0.4 | ||
flake8==4.0.1 | ||
isort==5.10.1 | ||
mypy<1.4.0 # Newer mypy versions cause issues with older Python ('Self' from 'typing_extensions'). | ||
pytest | ||
pytest-cov | ||
pytest-random-order | ||
pytest-mock | ||
|
||
# For mypy stubs: | ||
types-Deprecated | ||
numpy | ||
|
||
tqdm | ||
|
||
# Notebook tests: | ||
jupytext | ||
nbformat | ||
nbconvert | ||
jupyter_client | ||
ipykernel | ||
tornado |