Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
python-version: [3.9, '3.10', '3.11']
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
include README.md
include LICENSE
include requirements*.txt
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ notebook attached to a GPU or TPU.
To get started install TensorFlow 2.0 and Sonnet 2:

```shell
$ pip install tensorflow tensorflow-probability
$ pip install tensorflow
$ pip install dm-sonnet
```

Expand Down
1 change: 0 additions & 1 deletion requirements-test.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
mock>=3.0.5
tensorflow-datasets>1,<4
docutils
3 changes: 1 addition & 2 deletions requirements-tf.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
tensorflow==2.12.0rc0
tensorflow-probability==0.12.2
tensorflow==2.12.1
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,7 @@ def _parse_requirements(requirements_txt_path):
packages=find_namespace_packages(exclude=['*_test.py']),
install_requires=_parse_requirements('requirements.txt'),
extras_require=EXTRA_PACKAGES,
tests_require=_parse_requirements('requirements-test.txt'),
requires_python='>=3.6',
python_requires='>=3.9,<3.12',
include_package_data=True,
zip_safe=False,
# PyPI package information.
Expand Down
Loading