Skip to content

Commit

Permalink
Drop Python 3.8, in accordance with NEP29 recommendation (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
GenevieveBuckley authored May 10, 2023
1 parent d571db7 commit c62a503
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 3.8, 3.9, 3.10 and 3.1.
3. The pull request should work for Python 3.9, 3.10 and 3.1.
2 changes: 1 addition & 1 deletion .github/workflows/test_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: true
matrix:
os: ["windows-latest", "ubuntu-latest", "macos-latest"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]

steps:
- name: Checkout source
Expand Down
1 change: 1 addition & 0 deletions continuous_integration/environment-3.10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ dependencies:
- scikit-image==0.19.3
- pims==0.6.1
- slicerator==1.1.0
- pandas==2.0.0
1 change: 1 addition & 0 deletions continuous_integration/environment-3.11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ dependencies:
- scikit-image==0.19.3
- pims==0.6.1
- slicerator==1.1.0
- pandas==2.0.0
20 changes: 0 additions & 20 deletions continuous_integration/environment-3.8.yml

This file was deleted.

3 changes: 2 additions & 1 deletion continuous_integration/environment-3.9.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ dependencies:
- pytest==6.2.5
- pytest-cov==4.0.0
- pytest-flake8==1.0.7
- dask==2022.1.1
- dask==2023.2.1
- numpy==1.22.1
- scipy==1.7.3
- scikit-image==0.19.1
- pims==0.5
- slicerator==1.0.0
- pandas==2.0.0
5 changes: 3 additions & 2 deletions continuous_integration/environment-doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ channels:
- conda-forge

dependencies:
- python=3.8.*
- python=3.9.*
- pip==22.3
- wheel==0.37.1
- sphinx==5.3.0
- jinja2<3.1
- dask==2021.10.0
- dask==2023.2.0
- numpy==1.23.4
- scipy==1.9.2
- scikit-image==0.19.3
- pims==0.6.1
- slicerator==1.1.0
- pandas==2.0.0
- pip:
- dask-sphinx-theme>=3.0.0
2 changes: 1 addition & 1 deletion continuous_integration/gpuci/axis.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PYTHON_VER:
- "3.8"
- "3.9"
- "3.10"

CUDA_VER:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ def run_tests(self):
history = history_file.read()

requirements = [
"dask[array] >=2021.10.0",
"dask[array] >=2023.2.0",
"dask[dataframe] >=2023.2.0",
"numpy >=1.18",
"scipy >=0.19.1",
"pims >=0.4.1",
Expand Down Expand Up @@ -70,7 +71,6 @@ def run_tests(self):
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down

0 comments on commit c62a503

Please sign in to comment.