Skip to content

Commit 6f50031

Browse files
authored
Fix documentation & update min python version (#701)
* Fix documentation & update min python version * Fix issue with pylama installation for Py3.12
1 parent 5145e50 commit 6f50031

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/unit-tests.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ jobs:
4444
- name: Install dependencies
4545
run: |
4646
python -m pip install --upgrade pip
47+
pip install --upgrade setuptools
4748
pip install -r tests/rf_versions_matrix/requirements_${{ matrix.rf-version }}.txt
4849
pip install .[dev]
4950
- name: Run unit tests with coverage

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
[![Unit-tests](https://img.shields.io/github/workflow/status/MarketSquare/robotframework-tidy/Unit%20tests/main)](https://github.com/MarketSquare/robotframework-tidy/actions?query=workflow%3A%22Unit+tests%22 "GitHub Workflow Unit Tests Status")
21
![Codecov](https://img.shields.io/codecov/c/github/MarketSquare/robotframework-tidy/main "Code coverage on master branch")
32
![PyPI](https://img.shields.io/pypi/v/robotframework-tidy?label=version "PyPI package version")
43
![Python versions](https://img.shields.io/pypi/pyversions/robotframework-tidy "Supported Python versions")
@@ -30,7 +29,7 @@ Full documentation available [here](https://robotidy.readthedocs.io). :open_book
3029
Requirements <a name="requirements"></a>
3130
------------
3231

33-
Python 3.7+ :snake: and Robot Framework 4.0.0+ :robot:.
32+
Python 3.8+ :snake: and Robot Framework 4.0.0+ :robot:.
3433

3534
Installation <a name="installation"></a>
3635
------------

docs/source/transformers/AlignKeywordsSection.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -305,13 +305,13 @@ Comments are not aligned by default. You can enable it by configuring ``align_co
305305

306306
It is especially useful if you want to use comments to name the aligned columns. For example::
307307

308-
*** Test Cases ***
308+
*** Keywords ***
309309
Testing Random List
310-
[Template] Validate Random List Selection
310+
[Documentation] Validate Random List Selection
311311
# collection nbr items
312-
${SIMPLE LIST} 2 # first test
313-
${MIXED LIST} 3 # second test
314-
${NESTED LIST} 4 # third test
312+
${SIMPLE LIST} 2 # first check
313+
${MIXED LIST} 3 # second check
314+
${NESTED LIST} 4 # third check
315315

316316
Align settings separately
317317
-------------------------

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
License :: OSI Approved :: Apache Software License
1212
Operating System :: OS Independent
1313
Programming Language :: Python
14-
Programming Language :: Python :: 3.7
1514
Programming Language :: Python :: 3.8
1615
Programming Language :: Python :: 3.9
1716
Programming Language :: Python :: 3.10
1817
Programming Language :: Python :: 3.11
18+
Programming Language :: Python :: 3.12
1919
Framework :: Robot Framework
2020
Framework :: Robot Framework :: Tool
2121
Topic :: Software Development :: Testing

0 commit comments

Comments
 (0)