Skip to content

Commit

Permalink
Dropped support for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rodrigo-arenas committed Sep 12, 2024
1 parent 5bdb85d commit 977aea3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ '3.8', '3.9', '3.10', '3.11']
python-version: [ '3.9', '3.10', '3.11']
os: [ubuntu-latest, windows-latest, macOS-latest]
include:
- os: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
.. |Codecov| image:: https://codecov.io/gh/rodrigo-arenas/Sklearn-genetic-opt/branch/master/graphs/badge.svg?branch=master&service=github
.. _Codecov: https://codecov.io/github/rodrigo-arenas/Sklearn-genetic-opt?branch=master

.. |PythonVersion| image:: https://img.shields.io/badge/python-3.8%20%7C%203.9%20%7C%203.10%20%7C%203.11-blue
.. |PythonVersion| image:: https://img.shields.io/badge/python-3.9%20%7C%203.10%20%7C%203.11-blue
.. _PythonVersion : https://www.python.org/downloads/
.. |PyPi| image:: https://badge.fury.io/py/sklearn-genetic-opt.svg
.. _PyPi: https://badge.fury.io/py/sklearn-genetic-opt
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ inside the env use::

pip install sklearn-genetic-opt

.. |PythonMinVersion| replace:: 3.8
.. |PythonMinVersion| replace:: 3.9
.. |ScikitLearnMinVersion| replace:: 1.3.0
.. |NumPyMinVersion| replace:: 1.19.0
.. |SeabornMinVersion| replace:: 0.11.2
Expand Down
6 changes: 6 additions & 0 deletions docs/release_notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ Features:
areas of the hyperparameter space. If set to ``None``, the entire population will be initialized
randomly.

^^^^^^^^^^^^
API Changes:
^^^^^^^^^^^^

* Dropped support for python 3.8

What's new in 0.10.1
--------------------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
"tensorflow": ["tensorflow>=2.0.0"],
"all": ["mlflow>=1.30.0", "seaborn>=0.11.2", "tensorflow>=2.0.0"],
},
python_requires=">=3.8",
python_requires=">=3.9",
include_package_data=True,
)

0 comments on commit 977aea3

Please sign in to comment.