Skip to content

Commit e136286

Browse files
Fix postinstaller (#2832)
1 parent 394f1b1 commit e136286

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

README.adoc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,17 @@ See the https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride
3636
Currently the unit tests are tested on Python 3.10, and 3.12 (which is the recommended version).
3737
Likewise, the current version of wxPython, is 4.2.1, but RIDE is known to work with 4.0.7 and 4.1.1 versions.
3838

39-
(3.6 < python &lt;= 3.11) Install current released version (*2.0.8.1*) with:
39+
(3.6 &lt;= python &lt;= 3.11) Install current released version (*2.0.8.1*) with:
4040

4141
`pip install -U robotframework-ride`
4242

43-
(3.8 < python &lt;= 3.12) Install current development version (**2.1dev55**) with:
43+
(3.8 &lt;= python &lt;= 3.12) Install current development version (**2.1a2**) with:
4444

4545
`pip install -U https://github.com/robotframework/RIDE/archive/master.zip`
4646

47-
// (3.6 < python < 3.11) Install current Beta version (2.1a1) with:
48-
// [source, shell]
49-
// pip install -U --pre robotframework-ride
47+
(3.8 &lt;= python &lt;= 3.12) Install current Alpha version (2.1a2) with:
5048

49+
`pip install -U --pre robotframework-ride`
5150

5251

5352
**See the https://github.com/robotframework/RIDE/wiki/F%2eA%2eQ%2e[FAQ] at https://github.com/robotframework/RIDE/wiki[Wiki]**

src/robotide/application/releasenotes.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -280,11 +280,11 @@ def set_content(self, html_win, content):
280280
Forum</a> if your problem is already known.</p>
281281
<p>To install with <a class="reference external" href="https://pypi.org/project/pip/">pip</a> installed, just run</p>
282282
<pre class="literal-block">
283-
pip install --upgrade robotframework-ride=={VERSION}
283+
pip install --upgrade --pre robotframework-ride=={VERSION}
284284
</pre>
285285
<p>to install exactly this release, which is the same as using</p>
286286
<pre class="literal-block">
287-
pip install --upgrade robotframework-ride
287+
pip install --upgrade --pre robotframework-ride
288288
</pre>
289289
290290
<p>Alternatively you can download the source
@@ -309,7 +309,7 @@ def set_content(self, html_win, content):
309309
<pre class="literal-block">
310310
python -m robotide.postinstall -install
311311
</pre>
312-
<p>RIDE {VERSION} was released on 20/July/2024.</p>
312+
<p>RIDE {VERSION} was released on 21/July/2024.</p>
313313
<!-- <br/>
314314
<h3>May The Fourth Be With You!</h3>
315315
<h3>Celebrate the bank holiday, 10th June, Day of Portugal, Portuguese Communities and Camões!!</h3>

src/robotide/postinstall/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def caller(frame, platform):
328328
return create_desktop_shortcut(platform, frame)
329329

330330

331-
def main(args):
331+
def main(*args):
332332
# Options
333333
global option_q
334334
global option_f

src/robotide/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
#
1616
# Automatically generated by `tasks.py`.
1717

18-
VERSION = 'v2.1a1'
18+
VERSION = 'v2.1a2'

0 commit comments

Comments
 (0)