Skip to content

Commit a071bb4

Browse files
authored
Merge pull request #152 from illuin-tech/remove-python-3.8
Remove support for Python 3.8
2 parents e40386a + de44cef commit a071bb4

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
matrix:
17-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
17+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
1818

1919
steps:
2020
- uses: actions/checkout@v4
@@ -40,7 +40,7 @@ jobs:
4040
runs-on: ubuntu-latest
4141
strategy:
4242
matrix:
43-
python-version: [ '3.8', '3.9', '3.10', '3.11', '3.12' ]
43+
python-version: [ '3.9', '3.10', '3.11', '3.12', '3.13' ]
4444

4545
steps:
4646
- uses: actions/checkout@v4

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
Opyoid follows [semver guidelines](https://semver.org) for versioning.
44

55
## Unreleased
6+
## 3.0.0
7+
### Breaking changes
8+
- Remove support for Python 3.8
9+
610
## 2.0.2
711
### Fixes
812
- Fixed an InjectException raised when trying to bind a class with a stringified parameter type

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "opyoid"
33
description = "Dependency injection library"
44
authors = [{ name = "Illuin Technology", email = "contact@illuin.tech" }]
55
maintainers = [{ name = "Illuin Technology", email = "contact@illuin.tech" }]
6-
requires-python = ">=3.8"
6+
requires-python = ">=3.9"
77
readme = "README.md"
88
classifiers = [
99
"Development Status :: 5 - Production/Stable",

0 commit comments

Comments
 (0)