Skip to content

Commit

Permalink
Document support for Python 3.13. Remove support for Python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsystem committed Dec 18, 2024
1 parent 06551dd commit a9e5439
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-20.04 # ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13']

steps:
- uses: actions/checkout@v2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ This module is powered by [httpx](https://github.com/encode/httpx/tree/master/ht

## Installation

This module requires python >= 3.7
This module requires python >= 3.8

pip install lightkube

6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@

setup(
name='lightkube',
version="0.15.8",
version="0.16.0",
description='Lightweight kubernetes client library',
long_description=Path("README.md").read_text(),
long_description_content_type="text/markdown",
@@ -30,11 +30,11 @@
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12'
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'
]
)

0 comments on commit a9e5439

Please sign in to comment.