Skip to content

Commit

Permalink
Merge pull request #73 from ThomasWaldmann/supported-py-versions-cons…
Browse files Browse the repository at this point in the history
…istency

drop support for python < 3.9, consistency, fixes #68
  • Loading branch information
matze authored Aug 19, 2024
2 parents 49954a4 + 6a24b81 commit ee277f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@ jobs:
matrix:
include:
- os: ubuntu-20.04
python-version: '3.8'
toxenv: py38
- os: ubuntu-22.04
python-version: '3.9'
toxenv: py39
- os: ubuntu-22.04
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pkgconfig
:target: https://github.com/matze/pkgconfig/actions/workflows/ci.yml

``pkgconfig`` is a Python module to interface with the ``pkg-config``
command line tool for Python 3.3+.
command line tool for Python 3.9+.

It can be used to

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
]

[tool.poetry.dependencies]
python = "^3.3"
python = "^3.9.0"

[tool.poetry.dev-dependencies]
pytest = "^3.8.2"
7 changes: 5 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[tox]
# see also tool.poetry.dependencies
envlist = py{33,34,35,36,37,38,39,310,311,312}
# test on all supported Python versions, see also:
# - pyproject.toml: tool.poetry.dependencies
# - .github/workflows/ci.yml
# - README.rst
envlist = py{39,310,311,312}

[testenv]
deps =
Expand Down

0 comments on commit ee277f2

Please sign in to comment.