diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index fbebf496e..aa239fc93 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -38,7 +38,7 @@ jobs: fail-fast: false matrix: os: [windows-latest, macos-latest] - python-version: ['3.7', '3.8', '3.9', '3.10'] + python-version: ['3.8', '3.9', '3.10'] include: # Using pythons inside a docker image to provide all the Linux # python-versions permutations. diff --git a/continuous_integration/build-manylinux-wheels.sh b/continuous_integration/build-manylinux-wheels.sh index 0cd4e5e26..e669e060f 100755 --- a/continuous_integration/build-manylinux-wheels.sh +++ b/continuous_integration/build-manylinux-wheels.sh @@ -29,7 +29,7 @@ find /io/temp-wheels/ -type f -delete git config --global --add safe.directory /io # Iterate through available pythons. -for PYBIN in /opt/python/cp3{7,8,9,10}*/bin; do +for PYBIN in /opt/python/cp3{8,9,10}*/bin; do "${PYBIN}/pip" install -q -U setuptools wheel --cache-dir /io/pip-cache # Run the following in root of this repo. (cd /io/ && "${PYBIN}/pip" install -q .) diff --git a/setup.py b/setup.py index e29798cf1..e6c67e66d 100644 --- a/setup.py +++ b/setup.py @@ -92,7 +92,7 @@ package_dir={'pyresample': 'pyresample'}, packages=find_packages(), package_data={'pyresample.test': ['test_files/*']}, - python_requires='>=3.7', + python_requires='>=3.8', setup_requires=setup_requires, install_requires=requirements, extras_require=extras_require,