File tree 2 files changed +5
-6
lines changed
2 files changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -28,16 +28,16 @@ git clone https://github.com/google/trax.git
28
28
cd trax
29
29
git checkout $GIT_COMMIT_ID
30
30
31
- python -m pip install wheel twine pyopenssl
31
+ python3 -m pip install wheel twine pyopenssl
32
32
33
33
# Build the distribution
34
34
echo " Building distribution"
35
- python setup.py sdist
36
- python setup.py bdist_wheel --universal
35
+ python3 setup.py sdist
36
+ python3 setup.py bdist_wheel --universal
37
37
38
38
# Publish to PyPI
39
39
echo " Publishing to PyPI"
40
- twine upload dist/*
40
+ python3 -m twine upload dist/*
41
41
42
42
# Cleanup
43
43
rm -rf build/ dist/ trax.egg-info/
Original file line number Diff line number Diff line change 13
13
# See the License for the specific language governing permissions and
14
14
# limitations under the License.
15
15
16
- # coding=utf-8
17
16
# coding=utf-8
18
17
"""Install trax."""
19
18
22
21
23
22
setup (
24
23
name = 'trax' ,
25
- version = '1.4.0 ' ,
24
+ version = '1.4.1 ' ,
26
25
description = 'Trax' ,
27
26
long_description = (
28
27
'Trax helps you understand deep learning. We start with basic maths and'
You can’t perform that action at this time.
0 commit comments