https://github.com/GPflow/GPflow
Revision aaf93399df1f2511a2e84266ed0e45d54918bef0 authored by marcoadurno on 21 March 2020, 10:59:27 UTC, committed by GitHub on 21 March 2020, 10:59:27 UTC
Fixes #1348 by
* only adding gast as a requirement if tensorflow is not already installed;
* we check what's the latest available version of tensorflow on pypi and select a version of gast accordingly (gast<0.3 for tf<2.2 and gast>=0.3 for tf>=2.2)
1 parent 67dc76d
Raw File
Tip revision: aaf93399df1f2511a2e84266ed0e45d54918bef0 authored by marcoadurno on 21 March 2020, 10:59:27 UTC
fix gast dependency (#1350)
Tip revision: aaf9339
.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

# VSCode
.vscode

# OSX
.DS_Store
back to top