Skip to content

Commit

Permalink
Fix documentation & update min python version (#701)
Browse files Browse the repository at this point in the history
* Fix documentation & update min python version

* Fix issue with pylama installation for Py3.12
  • Loading branch information
bhirsz authored Jun 3, 2024
1 parent 5145e50 commit 6f50031
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools
pip install -r tests/rf_versions_matrix/requirements_${{ matrix.rf-version }}.txt
pip install .[dev]
- name: Run unit tests with coverage
Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
[![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")
![Codecov](https://img.shields.io/codecov/c/github/MarketSquare/robotframework-tidy/main "Code coverage on master branch")
![PyPI](https://img.shields.io/pypi/v/robotframework-tidy?label=version "PyPI package version")
![Python versions](https://img.shields.io/pypi/pyversions/robotframework-tidy "Supported Python versions")
Expand Down Expand Up @@ -30,7 +29,7 @@ Full documentation available [here](https://robotidy.readthedocs.io). :open_book
Requirements <a name="requirements"></a>
------------

Python 3.7+ :snake: and Robot Framework 4.0.0+ :robot:.
Python 3.8+ :snake: and Robot Framework 4.0.0+ :robot:.

Installation <a name="installation"></a>
------------
Expand Down
10 changes: 5 additions & 5 deletions docs/source/transformers/AlignKeywordsSection.rst
Original file line number Diff line number Diff line change
Expand Up @@ -305,13 +305,13 @@ Comments are not aligned by default. You can enable it by configuring ``align_co

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

*** Test Cases ***
*** Keywords ***
Testing Random List
[Template] Validate Random List Selection
[Documentation] Validate Random List Selection
# collection nbr items
${SIMPLE LIST} 2 # first test
${MIXED LIST} 3 # second test
${NESTED LIST} 4 # third test
${SIMPLE LIST} 2 # first check
${MIXED LIST} 3 # second check
${NESTED LIST} 4 # third check

Align settings separately
-------------------------
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Framework :: Robot Framework
Framework :: Robot Framework :: Tool
Topic :: Software Development :: Testing
Expand Down

0 comments on commit 6f50031

Please sign in to comment.