Skip to content

Commit

Permalink
Merge pull request #443 from djhoese/remove-py37-support
Browse files Browse the repository at this point in the history
Remove Python 3.7 support
  • Loading branch information
djhoese authored Jul 7, 2022
2 parents bc26674 + cb80844 commit 8a8dfaa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion continuous_integration/build-manylinux-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 .)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 8a8dfaa

Please sign in to comment.