Skip to content

Commit

Permalink
support of python 3.11;support drop python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaume-vignal committed Sep 16, 2024
1 parent 29c16be commit c009771
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
max-parallel: 1
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ sd.generate_report(

## 🛠 Installation

Eurybia is intended to work with Python versions 3.8 to 3.10. Installation can be done with pip:
Eurybia is intended to work with Python versions 3.9 to 3.11. Installation can be done with pip:

```
pip install eurybia
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ authors = [
]
description = "Eurybia monitor model drift over time and securize model deployment with data validation"
readme = "README.md"
requires-python = ">=3.8"
requires-python = ">=3.9"
license = {text = "Apache Software License 2.0"}
classifiers = [
"Programming Language :: Python :: 3",
Expand Down

0 comments on commit c009771

Please sign in to comment.