Skip to content

Commit

Permalink
Make python 3.8 minimum supported version
Browse files Browse the repository at this point in the history
  • Loading branch information
bbhtt committed Nov 15, 2023
1 parent 526970e commit 2a1e428
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion node/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ required, however, you can disable it explicitly via `--no-xdg-layout`.
## Requirements

- flatpak-builder 1.1.2 or newer
- Python 3.7+.
- Python 3.8+.
- [pipx](https://pypa.github.io/pipx/) (recommended) or
[pip](https://pip.pypa.io/en/stable/) (both of these are usually available in
your distro repositories, the latter is often included with Python installs).
Expand Down
5 changes: 2 additions & 3 deletions node/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ description = ""
authors = ["Ryan Gonzalez <ryan.gonzalez@collabora.com>", "Filippe LeMarchand <gasinvein@gmail.com>"]

[tool.poetry.dependencies]
python = "^3.7"
python = "^3.8"
aiohttp = "^3.9.0rc0"

Expand All @@ -25,7 +24,7 @@ flatpak-node-generator = "flatpak_node_generator.main:main"

[tool.blue]
line-length = 88
target-version = ["py37"]
target-version = ["py38"]

[tool.isort]
from_first = true
Expand All @@ -34,7 +33,7 @@ profile = "black"
src_paths = ["flatpak_node_generator", "tests"]

[tool.mypy]
python_version = "3.7"
python_version = "3.8"
exclude = "^(.*/)?((([^/]+)-quick-start)|(\\.venv)|npm-cache|yarn-mirror)/.*$"
strict = true

Expand Down

0 comments on commit 2a1e428

Please sign in to comment.