Skip to content

Commit 79c2f7b

Browse files
update tools; drop Python 3.9
1 parent 778c4e9 commit 79c2f7b

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v5
15+
uses: actions/checkout@v6
1616

1717
- name: set up Python
1818
uses: actions/setup-python@v6

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
default_language_version:
2-
python: python3.9
2+
python: python3.10
33
default_install_hook_types: [pre-commit, pre-push]
44
default_stages: [pre-commit]
55

66
repos:
77
- repo: https://github.com/astral-sh/ruff-pre-commit
8-
rev: v0.13.3
8+
rev: v0.15.1
99
hooks:
1010
- id: ruff
1111
args: [--fix]

poetry.lock

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

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository = "https://github.com/zauberzeug/nicegui-highcharts"
99
keywords = ["charts", "highcharts", "gui", "ui", "web"]
1010

1111
[tool.poetry.dependencies]
12-
python = "^3.9"
12+
python = "^3.10"
1313
nicegui = "^3.0.0"
1414

1515
[build-system]
@@ -23,12 +23,12 @@ build-backend = "poetry.core.masonry.api"
2323
max-line-length = 120
2424

2525
[tool.mypy]
26-
python_version = "3.9"
26+
python_version = "3.10"
2727
install_types = true
2828
check_untyped_defs = true
2929

3030
[tool.ruff]
31-
target-version = "py39"
31+
target-version = "py310"
3232
indent-width = 4
3333
line-length = 120
3434

0 commit comments

Comments
 (0)