Skip to content

Commit ee320e1

Browse files
committed
Remove Python 3.8 from supported versions
1 parent aae94be commit ee320e1

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
17+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1818

1919
name: Python ${{ matrix.python-version }}
2020

.github/workflows/release.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Release
2+
3+
on:
4+
release:
5+
types: [created]
6+
7+
jobs:
8+
deploy:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- name: Set up Python
14+
uses: actions/setup-python@v4
15+
with:
16+
python-version: '3.13'
17+
18+
- name: Install dependencies
19+
run: |
20+
python -m pip install --upgrade pip
21+
pip install setuptools wheel twine
22+
- name: Build and publish
23+
env:
24+
TWINE_USERNAME: __token__
25+
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
26+
run: |
27+
python setup.py sdist bdist_wheel
28+
twine upload --repository pypi dist/*

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ While many examples exist online, `pattern_kit` is designed as a pip-installable
2424
- Type-annotated and easy to extend
2525
- Ready-to-use patterns for real-world projects
2626
- [Extensive documentation with examples](https://pattern-kit.readthedocs.io)
27+
- Zero dependencies - pure Python, clean and portable
2728

2829
---
2930

pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "pattern_kit"
77
version = "1.0.0"
88
description = "A modern Python library of reusable software design patterns."
99
readme = "README.md"
10-
requires-python = ">=3.8"
10+
requires-python = ">=3.9"
1111
license = { text = "MIT" }
1212
authors = [
1313
{ name="Mickael Burguet", email="[email protected]" }
@@ -23,7 +23,6 @@ keywords = [
2323
classifiers = [
2424
"Development Status :: 5 - Production/Stable",
2525
"Programming Language :: Python :: 3",
26-
"Programming Language :: Python :: 3.8",
2726
"Programming Language :: Python :: 3.9",
2827
"Programming Language :: Python :: 3.10",
2928
"Programming Language :: Python :: 3.11",

0 commit comments

Comments
 (0)