https://github.com/GPflow/GPflow
Revision cce56f83db35c7f3e9c50cd00006d82a5c69a5db authored by sc336 on 02 December 2022, 15:19:29 UTC, committed by GitHub on 02 December 2022, 15:19:29 UTC
* Avoid loss of precision in to_default_float when input is a python float (#2021)

* avoid loss of precision in to_default_float

* add tests

* release management

* Updated to compensate for new mypy version (#2016)

* Updated to ignore mypy's new type-abstract error

* Looks like mypy won't quit on this one.

* More type hinting

* Sort

* Another try

* Another try

* Another try

* Go away mypy

* format

* More mypy wards

* Is this error connected?

* Removed unnecessary dummy package

* Another mypy error

* Format

* Fix mypy error. (#2009)

Co-authored-by: sc336 <s.chiu.00@gmail.com>
Co-authored-by: Jesper Nielsen <44195043+jesnie@users.noreply.github.com>

* Some corrections to RELEASE.md (#2022)

* Update VERSION

* Update version

Co-authored-by: John Mcleod <43960404+johnamcleod@users.noreply.github.com>
Co-authored-by: Jesper Nielsen <44195043+jesnie@users.noreply.github.com>
Co-authored-by: Chris Morter <chris@prowler.io>
1 parent ef0b32c
Raw File
Tip revision: cce56f83db35c7f3e9c50cd00006d82a5c69a5db authored by sc336 on 02 December 2022, 15:19:29 UTC
Sc336/fix conflicts (#2024)
Tip revision: cce56f8
tests_requirements.txt
# For testing and linting
black==20.8b1  # Use old version of black, because newer version is incompatible with our TF 2.4.
codecov
isort>=5.1
mypy>=0.920
pytest-cov
pytest-random-order
pytest-xdist
pytest>=3.5.0
types-Deprecated
types-pkg_resources
types-tabulate

# Notebooks and documentation:
ipykernel
ipython
jupyter_client
jupytext
nbconvert
nbformat
nbsphinx
pandoc
# Version 0.10.* bad: https://github.com/pydata/pydata-sphinx-theme/issues/952
pydata-sphinx-theme<0.10.0
sphinx
sphinx-autoapi
# Version 1.19.3 bad: https://github.com/tox-dev/sphinx-autodoc-typehints/issues/259
sphinx_autodoc_typehints!=1.19.3
sphinxcontrib-bibtex
tensorflow-datasets

matplotlib
ipywidgets  # Required by tensorflow-datasets
scikit-learn  # for mixture-density-network notebook

# For benchmarks
GitPython
Pillow
openpyxl
pandas
psutil
py-cpuinfo
xlrd


# Not used directly, but at the time of this writing `Jinja2` 3.1.0 breaks our notebooks.
Jinja2<3.1.0
# Not used directly, but at the time of this writing `click` 8.1.0 breaks `black` 20.8b1.
click<8.1.0
back to top