File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 5
5
6
6
setuptools .setup (
7
7
name = "airsim" ,
8
- version = "1.2.2 " ,
8
+ version = "1.2.3 " ,
9
9
author = "Shital Shah" ,
10
10
11
11
description = "Open source simulator based on Unreal Engine for autonomous vehicles from Microsoft AI & Research" ,
Original file line number Diff line number Diff line change
1
+ PAUSE Make sure to increment version in setup.py. Continue?
1
2
python setup.py sdist
2
3
twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
3
4
REM pip install airsim --upgrade
Original file line number Diff line number Diff line change @@ -145,7 +145,8 @@ IF NOT EXIST AirLib\deps mkdir AirLib\deps
145
145
IF NOT EXIST AirLib\deps\eigen3 (
146
146
powershell -command " & { [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; iwr http://bitbucket.org/eigen/eigen/get/3.3.2.zip -OutFile eigen3.zip }"
147
147
powershell -command " & { Expand-Archive -Path eigen3.zip -DestinationPath AirLib\deps }"
148
- move AirLib\deps\eigen* AirLib\deps\del_eigen
148
+ powershell -command " & { Move-Item -Path AirLib\deps\eigen* -Destination AirLib\deps\del_eigen }"
149
+ REM move AirLib\deps\eigen* AirLib\deps\del_eigen
149
150
mkdir AirLib\deps\eigen3
150
151
move AirLib\deps\del_eigen\Eigen AirLib\deps\eigen3\Eigen
151
152
rmdir /S /Q AirLib\deps\del_eigen
You can’t perform that action at this time.
0 commit comments