Skip to content

Commit 773e2f0

Browse files
committed
Removed wininst target and related robot_postinstall.py script. robotframework#2222
1 parent 38fcc45 commit 773e2f0

File tree

4 files changed

+3
-97
lines changed

4 files changed

+3
-97
lines changed

BUILD.rst

Lines changed: 3 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -116,15 +116,7 @@ Creating distributions
116116

117117
pip install robotframework --upgrade
118118

119-
3. Windows installers
120-
121-
- Create 32bit and 64bit variants on suitable machines/interpreters::
122-
123-
invoke wininst
124-
125-
- Manually upload to https://pypi.python.org/pypi/robotframework/.
126-
127-
4. JAR distribution
119+
3. JAR distribution
128120

129121
- Create::
130122

@@ -135,7 +127,7 @@ Creating distributions
135127
java -jar dist/robotframework-$VERSION.jar --version
136128
java -jar dist/robotframework-$VERSION.jar atest/testdata/misc/pass_and_fail.robot
137129

138-
5. Upload JAR to Sonatype
130+
4. Upload JAR to Sonatype
139131

140132
- Sonatype offers a service where users can upload JARs and they will be synced
141133
to the maven central repository. Below are the instructions to upload the JAR.
@@ -170,7 +162,7 @@ __ https://issues.sonatype.org/secure/Dashboard.jspa
170162
__ http://central.sonatype.org/pages/working-with-pgp-signatures.html
171163
__ https://docs.sonatype.org/display/Repository/Sonatype+OSS+Maven+Repository+Usage+Guide
172164

173-
6. User Guide
165+
5. User Guide
174166

175167
- Create package (updates also library docs)::
176168

robot_postinstall.py

Lines changed: 0 additions & 70 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@
6464
SCRIPTS = [join('src', 'bin', s) for s in SCRIPTS + ['robot', 'rebot']]
6565
if WINDOWS:
6666
SCRIPTS = [s+'.bat' for s in SCRIPTS]
67-
if 'bdist_wininst' in sys.argv:
68-
SCRIPTS.append('robot_postinstall.py')
69-
LONG_DESCRIPTION = WINDOWS_DESCRIPTION
7067

7168

7269
class custom_install_scripts(install_scripts):

tasks.py

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -166,19 +166,6 @@ def announce():
166166
print(os.path.join('dist', name))
167167

168168

169-
@task
170-
def wininst(remove_dist=False):
171-
"""Create Windows installer.
172-
173-
Args:
174-
remove_dist: Control is 'dist' directory initially removed or not.
175-
"""
176-
clean(remove_dist, create_dirs=True)
177-
run('python setup.py bdist_wininst '
178-
'--bitmap robot.bmp --install-script robot_postinstall.py')
179-
announce()
180-
181-
182169
@task
183170
def jar(jython_version='2.7.0', pyyaml_version='3.11', remove_dist=False):
184171
"""Create JAR distribution.

0 commit comments

Comments
 (0)