Skip to content

Commit

Permalink
Drop support for Python 3.6 and Numpy < 1.17
Browse files Browse the repository at this point in the history
  • Loading branch information
LaurentRDC committed Dec 18, 2020
1 parent 3a56212 commit 995a685
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version: [3.7, 3.8, 3.9]
exclude:
# Bug in scikit-image 0.17 prevents install
- os: macos-latest
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

Release 2.1.1
-------------

* `Support for Python 3.6 and NumPy<1.17 has been dropped <https://numpy.org/neps/nep-0029-deprecation_policy.html>`_

Release 2.1.0
-------------

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ scikit-ued

[![Documentation Build Status](https://readthedocs.org/projects/scikit-ued/badge/?version=master)](http://scikit-ued.readthedocs.io) [![PyPI Version](https://img.shields.io/pypi/v/scikit-ued.svg)](https://pypi.org/project/scikit-ued/) [![Conda-forge Version](https://img.shields.io/conda/vn/conda-forge/scikit-ued.svg)](https://anaconda.org/conda-forge/scikit-ued)

Collection of algorithms and functions for ultrafast electron
diffraction. It aims to be a fully-tested package taking advantage of
Python\'s most recent features.
Collection of algorithms and functions for ultrafast electron diffraction. It aims to be a fully-tested package taking advantage of Python's most recent features.

For examples, see our [tutorials](https://scikit-ued.readthedocs.io/).

Expand Down Expand Up @@ -34,7 +32,7 @@ To install the latest development version from [Github](https://github.com/Laure
After installing scikit-ued you can use it like any other Python module
as `skued`.

Each version is tested against **Python 3.6+**. If you are using a
Each version is tested against **Python 3.7+**. If you are using a
different version, tests can be run using the `pytest` package.

Optional dependencies
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Installation
Requirements
============

Scikit-ued works on Linux, Mac OS X and Windows. It requires Python 3.6+. Packages requirements are `listed here <https://github.com/LaurentRDC/scikit-ued/blob/master/requirements.txt>`_.
Scikit-ued works on Linux, Mac OS X and Windows. It requires Python 3.7+. Packages requirements are `listed here <https://github.com/LaurentRDC/scikit-ued/blob/master/requirements.txt>`_.

Install scikit-ued
==================
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
crystals >= 1.2.2, < 2
npstreams >= 1.6.4, < 2
numpy >= 1.15, < 2
numpy >= 1.17, < 2
pywavelets >= 1.0.0
scikit-image >= 0.17, <1
scipy >= 1.0.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"Documentation": "https://scikit-ued.readthedocs.io/",
"Source": "https://github.com/LaurentRDC/scikit-ued",
},
python_requires=">=3.6",
python_requires=">=3.7",
packages=PACKAGES,
entry_points={"console_scripts": ["skued = skued.__main__:main"]},
include_package_data=True,
Expand Down

0 comments on commit 995a685

Please sign in to comment.