@@ -24,9 +24,8 @@ this version. Alternatively you can download the source distribution from
24
24
For more details and other installation approaches, see the `installation
25
25
instructions <../../INSTALL.rst> `_.
26
26
27
- Separate Windows installers are not created anymore. The standalone jar
28
- distribution can be and the standalone JAR
29
- with Jython 2.7 is available at `Maven central
27
+ Separate Windows installers are not created anymore.
28
+ The standalone jar with Jython 2.7 is available at `Maven central
30
29
<http://search.maven.org/#search%7Cga%7C1%7Ca%3Arobotframework> `_.
31
30
32
31
Robot Framework 3.0 was released on Thursday December 31, 2015.
@@ -60,11 +59,11 @@ currently supported Python versions are 2.6, 2.7, and 3.3 and newer.
60
59
Installation on Python 3 works exactly as it does for Python 2, and
61
60
the recommended installation method is with pip::
62
61
63
- pip3 install --pre robotframework
64
- python3 -m pip install --pre robotframework
62
+ pip3 install robotframework
63
+ python3 -m pip install robotframework
65
64
66
65
Note that while the standard libraries distributed with Robot Framework do work
67
- with Python 3, most other external libraries currently do not.
66
+ with Python 3, most other external libraries and tools currently do not.
68
67
69
68
New listener interface that can modify executed tests and results
70
69
-----------------------------------------------------------------
@@ -79,7 +78,7 @@ For more information about the new listener API, including interesting
79
78
usage examples, see the `Listener interface `__ section from Robot
80
79
Framework User Guide.
81
80
82
- __ http://robotframework.org/robotframework/3.0 /RobotFrameworkUserGuide.html#listener-interface
81
+ __ http://robotframework.org/robotframework/latest /RobotFrameworkUserGuide.html#listener-interface
83
82
84
83
New `robot ` start-up script
85
84
---------------------------
@@ -105,6 +104,11 @@ multiple Python interpreters like, for example, `python3 -m robot`,
105
104
A limitation of the `python -m robot ` approach is that it does not work with
106
105
Python 2.6. The old `python -m robot.run ` version can be used instead.
107
106
107
+ The same enhancement that made `python -m robot ` possible also made it possible
108
+ to execute the `robot ` installation directory like `python path/to/robot `.
109
+ This works the same way as `python path/to/robot/run.py ` that works also
110
+ with the earlier versions.
111
+
108
112
Listeners no longer slow down execution
109
113
---------------------------------------
110
114
@@ -125,12 +129,12 @@ installers, but we have decided not to continue making them in Robot Framework
125
129
126
130
1. Using pip online::
127
131
128
- pip install --pre robotframework
132
+ pip install robotframework
129
133
130
134
2. Downloading the source distribution from PyPI _ and installing it using
131
135
pip locally::
132
136
133
- pip install robotframework-3.0b1 .tar.gz
137
+ pip install robotframework-3.0 .tar.gz
134
138
135
139
3. Extracting the aforementioned source distribution, navigating to the created
136
140
directory on the command line, and installing manually::
0 commit comments