Skip to content

Commit

Permalink
drop python 3.7 support (#365)
Browse files Browse the repository at this point in the history
* drop python 3.7 support

* changelog
  • Loading branch information
mathause committed Jan 3, 2024
1 parent 6f5d3e5 commit e30aa89
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd-workflow.yml
Expand Up @@ -60,7 +60,7 @@ jobs:
strategy:
matrix:
os: ["ubuntu-latest"]
python-version: ["3.7", "3.9", "3.11"]
python-version: ["3.8", "3.9", "3.11"]
defaults:
run:
shell: bash -l {0}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -13,6 +13,11 @@ the legacy calibration routines used `np.unique`, which shuffles them. See `#338
(`#339 <https://github.com/MESMER-group/mesmer/pull/339>`_).
By `Mathias Hauser`_.

Breaking changes
^^^^^^^^^^^^^^^^

- Removed support for Python 3.7 (`#163 <https://github.com/MESMER-group/mesmer/issues/163>`_.).
By `Mathias Hauser`_.

v0.9.0 - 2023.12.19
-------------------
Expand Down
2 changes: 1 addition & 1 deletion docs/source/installation.rst
Expand Up @@ -4,7 +4,7 @@ Installation
Required dependencies
---------------------

- Python (3.7 or later)
- Python (3.8 or later)
- `dask <https://dask.org/>`__
- `numpy <http://www.numpy.org/>`__
- `pandas <https://pandas.pydata.org/>`__
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Expand Up @@ -19,7 +19,6 @@ classifiers =
Intended Audience :: Science/Research
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -31,7 +30,7 @@ classifiers =
packages = find:
zip_safe = False # https://mypy.readthedocs.io/en/latest/installed_packages.html
include_package_data = True
python_requires = >=3.7
python_requires = >=3.8
install_requires =
dask[complete]
numpy
Expand Down

0 comments on commit e30aa89

Please sign in to comment.