Skip to content

Commit

Permalink
Feat/remove 38 support (#65)
Browse files Browse the repository at this point in the history
* Remove py38 support
  • Loading branch information
tarsil authored Nov 25, 2024
1 parent a20634b commit 27a4af5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

services:
mongodb:
Expand Down
6 changes: 6 additions & 0 deletions docs/en/docs/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Release Notes

## Unreleased

### Changed

- Remove support for Python 3.11.

## 0.10.8

### Added
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "mongoz"
description = "ODM with pydantic made it simple"
long_description = "ODM with pydantic made it simple"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
dynamic = ['version']
license = "MIT"
authors = [{ name = "Tiago Silva", email = "[email protected]" }]
Expand All @@ -30,7 +30,6 @@ classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit 27a4af5

Please sign in to comment.