Skip to content

Commit 912e4ed

Browse files
authored
Merge branch 'develop' into pre-commit-ci-update-config
2 parents 0ecd66a + a4f6487 commit 912e4ed

15 files changed

+16
-31
lines changed

.github/workflows/docker-publish.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ jobs:
1515
fail-fast: true
1616
matrix:
1717
include:
18-
- dockerfile: ./docker/3.7/Debian/Dockerfile
19-
mtag: py3.7-debian
2018
- dockerfile: ./docker/3.8/Debian/Dockerfile
2119
mtag: py3.8-debian
2220
- dockerfile: ./docker/3.9/Debian/Dockerfile

.github/workflows/pip-install.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: true
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10"]
15+
python-version: ["3.8", "3.9", "3.10"]
1616
os: [ubuntu-22.04, windows-latest, macos-latest]
1717
steps:
1818
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: true
1919
matrix:
20-
python-version: ["3.7", "3.8", "3.9", "3.10"]
20+
python-version: ["3.8", "3.9", "3.10"]
2121

2222
steps:
2323
- uses: actions/checkout@v3

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ repos:
6767
rev: 22.12.0 # Replace with any tag/version: https://github.com/psf/black/tags
6868
hooks:
6969
- id: black
70-
language_version: python3 # Should be a command that runs python3.7+
70+
language_version: python3 # Should be a command that runs python3.+
7171
additional_dependencies: ['click==8.0.4'] # Currently >8.0.4 breaks black
7272
- id: black-jupyter
7373
language: python

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ Before you submit a pull request, check that it meets these guidelines:
102102
2. If the pull request adds functionality, the docs should be updated. Put
103103
your new functionality into a function with a docstring, and add the
104104
feature to the list in README.rst.
105-
3. The pull request should work for Python 3.7, 3.8, 3.9 and 3.10, and for PyPy. Check
105+
3. The pull request should work for Python 3.8, 3.9 and 3.10, and for PyPy. Check
106106
https://travis-ci.com/tialab/tiatoolbox/pull_requests
107107
and make sure that the tests pass for all supported Python versions.
108108

HISTORY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# History
22

3-
# 1.3.1 (2022-12-20)
3+
## 1.3.1 (2022-12-20)
44

55
### Major Updates and Feature Improvements
66

docker/3.7/Debian/Dockerfile

Lines changed: 0 additions & 11 deletions
This file was deleted.

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ MacPorts
8181
Stable release
8282
--------------
8383

84-
Please note that TIAToolbox is tested for python version 3.7, 3.8, 3.9 and 3.10.
84+
Please note that TIAToolbox is tested for python version 3.8, 3.9 and 3.10.
8585
To install TIA Toolbox, run this command in your terminal after you have installed the prerequisite software:
8686

8787
.. code-block:: console

requirements.conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ dependencies:
99
- openslide
1010
- pip>=20.0.2
1111
- pixman>=0.39.0
12-
- python>=3.7, <3.11
12+
- python>=3.8, <3.11
1313
- pip:
1414
- -r requirements.txt

requirements.dev.conda.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ dependencies:
99
- openslide
1010
- pip>=20.0.2
1111
- pixman>=0.39.0
12-
- python>=3.7, <3.11
12+
- python>=3.8, <3.11
1313
- pip:
1414
- -r requirements_dev.txt

0 commit comments

Comments
 (0)