Skip to content

Commit edfaebb

Browse files
committed
Supportin only python3.9+
1 parent 4c7bc63 commit edfaebb

File tree

4 files changed

+63
-62
lines changed

4 files changed

+63
-62
lines changed

.github/workflows/test-installation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- name: Set up Python
1111
uses: actions/setup-python@v2
1212
with:
13-
python-version: 3.8
13+
python-version: 3.9
1414
- name: Build and install package
1515
run: |
1616
curl -sSL https://install.python-poetry.org | python3 -
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
fail-fast: false
3333
matrix:
34-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
34+
python-version: [ "3.9", "3.10", "3.11", "3.12" ]
3535

3636
steps:
3737
- name: Set up Python ${{ matrix.python-version }}

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ This project is a CLI tool for using [robusta](https://github.com/robusta-dev/ro
66
* Run diagnostic to see if robusta is running properly
77
* Deploy and test your own extensions to Robusta like custom actions and playbooks
88

9+
910
For more infomration, checkout the [robusta installation docs](https://docs.robusta.dev/master/).
11+
12+
## Requirements
13+
14+
- Python 3.9 or higher

poetry.lock

Lines changed: 55 additions & 59 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ readme = "README.md"
99
robusta = "robusta_cli.main:app"
1010

1111
[tool.poetry.dependencies]
12-
python = "^3.8, <3.13"
12+
python = "^3.9, <3.13"
1313
typer = "^0.12.3"
1414
pyyaml = "^6.0.1"
1515
click-spinner = "^0.1.10"

0 commit comments

Comments
 (0)