Skip to content

Commit

Permalink
Update docs and version
Browse files Browse the repository at this point in the history
  • Loading branch information
HelioGuilherme66 committed Dec 19, 2023
1 parent 5d40dcc commit 01bf4c2
Show file tree
Hide file tree
Showing 6 changed files with 67 additions and 35 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@ and this project adheres to http://semver.org/spec/v2.0.0.html[Semantic Versioni

== https://github.com/robotframework/RIDE[Unreleased]

=== Added

- Added support for language configured test suites, with installed Robot Framework version 6.0 or higher.
- Fields are shown in the language of the files in Grid Editor (will be configurable if future versions).
- Colorization for language configured files is working in Text Editor.

=== Fixed

- Fixed New User Keyword dialog not allowing empty Arguments field

=== Removed

- Removed support for old Python versions, 3.6 nd 3.7.

== https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.0.8.1.rst[2.0.8.1] - 2023-11-01

Expand Down
6 changes: 4 additions & 2 deletions README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ If you are looking for the latest released version, you can get the source code

See the https://github.com/robotframework/RIDE/blob/master/doc/releasenotes/ride-2.0.8.1.rst[release notes] for latest release version 2.0.8.1

**Version https://github.com/robotframework/RIDE/tree/release/2.0.8.1[2.0.8.1] was the last release supporting Python 3.6 and 3.7**

**Version https://github.com/robotframework/RIDE/tree/release/1.7.4.2[1.7.4.2] was the last release supporting Python 2.7**


**The current development version is based on 2.0.8.1, supports Python from 3.6 up to 3.11 (1st November 2023).**
**The current development version is based on 2.0.8.1, supports Python from 3.8 up to 3.11 (20th December 2023).**

Currently the unit tests are tested on Python 3.10, and 3.11 (which is the recommended version).
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.
Expand All @@ -32,7 +34,7 @@ Likewise, the current version of wxPython, is 4.2.1, but RIDE is known to work w

`pip install -U robotframework-ride`

Install current development version (**2.0.9dev#**) with:
(3.8 < python <= 3.11) Install current development version (**2.1a1**) with:

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

Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,6 @@
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand Down Expand Up @@ -94,7 +92,7 @@ def run(self):
package_dir={'': SOURCE_DIR},
packages=find_packages(SOURCE_DIR),
package_data=PACKAGE_DATA,
python_requires='>=3.6',
python_requires='>=3.8, <3.12',
# Robot Framework package data is not included, but RIDE does not need it.
# Always install everything, since we may be switching between versions
options={'install': {'force': True}},
Expand Down
Loading

0 comments on commit 01bf4c2

Please sign in to comment.