File tree 3 files changed +7
-3
lines changed
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ but can have issues due to upstream libraries being in flux. The table below
176
176
lists the version(s) of TensorFlow that align with each TF Agents' release.
177
177
Release versions of interest:
178
178
179
+ * 0.19.0 supports tensorflow-2.15.0.
179
180
* 0.18.0 dropped Python 3.8 support.
180
181
* 0.16.0 is the first version to support Python 3.11.
181
182
* 0.15.0 is the last release compatible with Python 3.7.
@@ -186,6 +187,7 @@ Release versions of interest:
186
187
Release | Branch / Tag | TensorFlow Version | dm-reverb Version
187
188
------- | ---------------------------------------------------------- | ------------------ | -----------
188
189
Nightly | [ master] ( https://github.com/tensorflow/agents ) | tf-nightly | dm-reverb-nightly
190
+ 0.19.0 | [ v0.19.0] ( https://github.com/tensorflow/agents/tree/v0.19.0 ) | 2.15.0 | 0.14.0
189
191
0.18.0 | [ v0.18.0] ( https://github.com/tensorflow/agents/tree/v0.18.0 ) | 2.14.0 | 0.13.0
190
192
0.17.0 | [ v0.17.0] ( https://github.com/tensorflow/agents/tree/v0.17.0 ) | 2.13.0 | 0.12.0
191
193
0.16.0 | [ v0.16.0] ( https://github.com/tensorflow/agents/tree/v0.16.0 ) | 2.12.0 | 0.11.0
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ $ pip install --user tf-agents[reverb]
32
32
# Use this tag get the matching examples and colabs.
33
33
$ git clone https://github.com/tensorflow/agents.git
34
34
$ cd agents
35
- $ git checkout v0.18 .0
35
+ $ git checkout v0.19 .0
36
36
```
37
37
38
38
If you want to install TF-Agents with versions of Tensorflow or
@@ -98,6 +98,7 @@ but can have issues due to upstream libraries being in flux. The table below
98
98
lists the version(s) of TensorFlow that align with each TF Agents' release.
99
99
Release versions of interest:
100
100
101
+ * 0.19.0 supports tensorflow-2.15.0.
101
102
* 0.18.0 dropped Python 3.8 support.
102
103
* 0.16.0 is the first version to support Python 3.11.
103
104
* 0.15.0 is the last release compatible with Python 3.7.
@@ -108,6 +109,7 @@ Release versions of interest:
108
109
Release | Branch / Tag | TensorFlow Version | dm-reverb Version
109
110
------- | ---------------------------------------------------------- | ------------------ | -----------
110
111
Nightly | [ master] ( https://github.com/tensorflow/agents ) | tf-nightly | dm-reverb-nightly
112
+ 0.19.0 | [ v0.19.0] ( https://github.com/tensorflow/agents/tree/v0.19.0 ) | 2.15.0 | 0.14.0
111
113
0.18.0 | [ v0.18.0] ( https://github.com/tensorflow/agents/tree/v0.18.0 ) | 2.14.0 | 0.13.0
112
114
0.17.0 | [ v0.17.0] ( https://github.com/tensorflow/agents/tree/v0.17.0 ) | 2.13.0 | 0.12.0
113
115
0.16.0 | [ v0.16.0] ( https://github.com/tensorflow/agents/tree/v0.16.0 ) | 2.12.0 | 0.11.0
Original file line number Diff line number Diff line change 17
17
18
18
# We follow Semantic Versioning (https://semver.org/)
19
19
_MAJOR_VERSION = '0'
20
- _MINOR_VERSION = '19 '
20
+ _MINOR_VERSION = '20 '
21
21
_PATCH_VERSION = '0'
22
22
23
23
# When building releases, we can update this value on the release branch to
26
26
# release branch, the current version is by default assumed to be a
27
27
# 'development' version, labeled 'dev'.
28
28
_DEV_SUFFIX = 'dev'
29
- _REL_SUFFIX = 'rc0 '
29
+ _REL_SUFFIX = ''
30
30
31
31
# Example, '0.10.0rc0'
32
32
__version__ = '.' .join ([
You can’t perform that action at this time.
0 commit comments