This repository was archived by the owner on Oct 31, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +5
-6
lines changed
Expand file tree Collapse file tree 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
2828cd trax
2929git checkout $GIT_COMMIT_ID
3030
31- python -m pip install wheel twine pyopenssl
31+ python3 -m pip install wheel twine pyopenssl
3232
3333# Build the distribution
3434echo " 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
3737
3838# Publish to PyPI
3939echo " Publishing to PyPI"
40- twine upload dist/*
40+ python3 -m twine upload dist/*
4141
4242# Cleanup
4343rm -rf build/ dist/ trax.egg-info/
Original file line number Diff line number Diff line change 1313# See the License for the specific language governing permissions and
1414# limitations under the License.
1515
16- # coding=utf-8
1716# coding=utf-8
1817"""Install trax."""
1918
2221
2322setup (
2423 name = 'trax' ,
25- version = '1.4.0 ' ,
24+ version = '1.4.1 ' ,
2625 description = 'Trax' ,
2726 long_description = (
2827 'Trax helps you understand deep learning. We start with basic maths and'
You can’t perform that action at this time.
0 commit comments