Skip to content

Commit

Permalink
drop python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
nreinicke committed Jan 29, 2025
1 parent 8bf48cf commit 0a2a3a3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

env:
PYTHON: ${{ matrix.python-version }}
Expand Down Expand Up @@ -50,4 +50,5 @@ jobs:
- name: Python unit tests
run: |
pytest tests/ -v
python -m unittest discover tests/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# <img src="docs/images/routeelogo.png" alt="Routee Powertrain" width="100"/>

<div align="left">
<img src="https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue"/>
<img src="https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-blue"/>
<a href="https://pypi.org/project/nrel.routee.powertrain/">
<img src="https://img.shields.io/pypi/v/nrel.routee.powertrain" alt="PyPi Latest Release"/>
</a>
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ classifiers = [
"Topic :: Scientific/Engineering",
]
dependencies = ["pandas", "numpy", "onnx", "onnxruntime==1.18.1"]
requires-python = ">=3.8"
requires-python = ">=3.9"

[project.optional-dependencies]
scikit = ["scikit-learn==1.2.2", "skl2onnx"]
Expand Down

0 comments on commit 0a2a3a3

Please sign in to comment.