Skip to content

Commit de16370

Browse files
Add Python 3.12 and remove Python 3.7 from the build matrix (#42)
1 parent 41e3456 commit de16370

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
python-version: [3.7, 3.8, 3.9, "3.10", "3.11"]
25+
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]
2626

2727
steps:
2828
- uses: actions/checkout@v1
@@ -80,18 +80,18 @@ jobs:
8080
8181
- name: Install distribution dependencies
8282
run: pip install --upgrade build
83-
if: matrix.python-version == 3.10
83+
if: matrix.python-version == 3.11
8484

8585
- name: Create distribution package
8686
run: python -m build
87-
if: matrix.python-version == 3.10
87+
if: matrix.python-version == 3.11
8888

8989
- name: Upload distribution package
9090
uses: actions/upload-artifact@master
9191
with:
9292
name: dist
9393
path: dist
94-
if: matrix.python-version == 3.10
94+
if: matrix.python-version == 3.11
9595

9696
publish:
9797
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [2.0.4] - 2023-10-28 :dragon:
99
- Fixes bug in Singleton implementation: stop singleton provider from recreating
10-
objects implementing `__len__`, by [Klavionik](https://github.com/Klavionik)
10+
objects implementing `__len__`, by [Klavionik](https://github.com/Klavionik).
11+
- Add Python 3.12 and remove Python 3.7 from the build matrix.
1112

1213
## [2.0.3] - 2023-08-14 :sun_with_face:
1314
- Checks `scoped_services` before resolving from map when in a scope, by [StummeJ](https://github.com/StummeJ).

0 commit comments

Comments
 (0)