https://github.com/GPflow/GPflow
Revision 7b2a0c8884dc0fe0dfc5090749b355e68c8563fb authored by st-- on 08 September 2020, 15:44:27 UTC, committed by GitHub on 08 September 2020, 15:44:27 UTC
* tensorflow_probability has been changing internals around their caching; here we update the cache-clearing for our deepcopy so that it works both for tensorflow_probability < 0.11.0, == 0.11.0 (with a workaround for the bug contained therein), and > 0.11.0 (in their master branch they fixed the bug and changed internals again)

* revert pinning of tf/tfp, numpy, scipy; rely on `pip --use-feature=2020-resolver`

* pin black==19.10b0 as the 20.8b0 upgrade changes formatting a lot

* disable test broken by tensorflow 2.3

Co-authored-by: Vincent Dutordoir <dutordoirv@gmail.com>
1 parent 5a945d6
Raw File
Tip revision: 7b2a0c8884dc0fe0dfc5090749b355e68c8563fb authored by st-- on 08 September 2020, 15:44:27 UTC
Fixes for tf 2.3 / tfp 0.11.0 compatiblity (#1553)
Tip revision: 7b2a0c8
.gitignore
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]

# C extensions
*.so

# Distribution / packaging
.Python
env/
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg

# PyInstaller
#  Usually these files are written by a python script from a template
#  before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec

# Installer logs
pip-log.txt
pip-delete-this-directory.txt

# Unit test / coverage reports
htmlcov/
.tox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*,cover

# Translations
*.mo
*.pot

# Django stuff:
*.log

# Sphinx documentation
docs/_build/

# PyBuilder
target/

# Emacs backups
*~

# Pycharm IDE directory
.idea

# IPython Notebooks
.ipynb_checkpoints
*.ipynb

# VSCode
.vscode

# OSX
.DS_Store

# mypy artifacts
.mypy_cache
back to top