Skip to content

Commit 8ab9352

Browse files
fix: moving back to python 3.10 due to python-semantic-release incompatibility
1 parent b49760e commit 8ab9352

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,15 @@ jobs:
2727
- uses: actions/checkout@v3
2828
- uses: actions/setup-python@v4
2929
with:
30-
python-version: "3.11"
30+
python-version: "3.10"
3131
- uses: pre-commit/action@v3.0.0
3232

3333
test:
3434
strategy:
3535
fail-fast: false
3636
matrix:
3737
python-version:
38+
- "3.10"
3839
- "3.11"
3940
os:
4041
- ubuntu-latest
@@ -66,10 +67,6 @@ jobs:
6667
with:
6768
fetch-depth: 0
6869
persist-credentials: false
69-
- name: Set up Python
70-
uses: actions/setup-python@v4
71-
with:
72-
python-version: "3.11"
7370
# Run semantic release:
7471
# - Update CHANGELOG.md
7572
# - Update version in code

.readthedocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3.11"
6+
python: "3.10"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ packages = [{include = "roborock"}]
1919
roborock = "roborock.cli:main"
2020

2121
[tool.poetry.dependencies]
22-
python = "^3.11"
22+
python = "^3.10"
2323
click = ">=8"
2424
aiohttp = "^3.8.2"
2525
async-timeout = "*"

0 commit comments

Comments
 (0)