Skip to content

Commit

Permalink
downgrade minimal python version to 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pohmelie committed Jan 5, 2024
1 parent e052a3b commit 800badc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: ci/cd
on: [push, pull_request]
env:
lowest_python_version: 3.11
lowest_python_version: 3.8
python_package_distributions: python-package-distributions

jobs:
Expand All @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ pyftpdlib 1.5.2
Dependencies
------------

- Python 3.11+
- Python 3.8+

0.13.0 is the last version which supports python 3.5.3+

Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ pyftpdlib 1.5.2
Dependencies
------------

- Python 3.11+
- Python 3.8+

0.13.0 is the last version which supports python 3.5.3+

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "aioftp"
version = "0.22.2"
description = "ftp client/server for asyncio"
readme = "README.rst"
requires-python = ">= 3.11"
requires-python = ">= 3.8"
license = {file = "license.txt"}
authors = [
{name = "pohmelie", email = "[email protected]"},
Expand Down Expand Up @@ -76,11 +76,11 @@ packages.find.where = ["src"]
# tools
[tool.black]
line-length = 120
target-version = ["py311"]
target-version = ["py38"]

[tool.ruff]
line-length = 120
target-version = "py311"
target-version = "py38"
select = ["E", "W", "F", "Q", "UP", "I", "ASYNC"]
src = ["src"]

Expand Down

0 comments on commit 800badc

Please sign in to comment.