Skip to content

Commit

Permalink
Add support for Python 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
amotl committed Dec 4, 2023
1 parent 037cf64 commit a9fa130
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.12"]
python-version: ["3.7", "3.12"]

env:
OS: ${{ matrix.os }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ngr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest"]
python-version: ["3.8", "3.12"]
python-version: ["3.7", "3.12"]

env:
OS: ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
- ngr: Improve .NET runner by accepting `--dotnet-version` command-line option
- ngr: Fix Gradle test runner by wiping existing Gradle wrappers, to accommodate
for contemporary versions of Java
- Add support for Python 3.7

## 2023-11-06 v0.0.3
- ngr: Fix `contextlib.chdir` only available on Python 3.11 and newer
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ default-tag = "0.0.0"
name = "pueblo"
description = "Pueblo - a Python toolbox library."
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.7"
license = { text = "LGPL 3, EUPL 1.2" }
keywords = [
"general purpose",
Expand All @@ -45,6 +45,7 @@ classifiers = [
"Operating System :: Unix",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
Expand Down Expand Up @@ -73,7 +74,7 @@ all = [
]
cli = [
"click<9",
"click-aliases<2",
"click-aliases<2,>=1.0.4",
"colorlog<7",
"python-dotenv<2",
]
Expand Down

0 comments on commit a9fa130

Please sign in to comment.