Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

drop python 3.7 support #365

Merged
merged 2 commits into from Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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