Skip to content

Commit

Permalink
Drop support for Python3.7 (#1615)
Browse files Browse the repository at this point in the history
  • Loading branch information
yadudoc authored Aug 1, 2024
1 parent 9040ae9 commit dc89e10
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior, for e.g:
1. Install globus-compute-sdk==2.0.0 and globus-compute-endpoint==2.0.0 with Python 3.7 on cluster
1. Install globus-compute-sdk==2.0.0 and globus-compute-endpoint==2.0.0 with Python 3.10 on cluster
2. Run a test script
3. Wait 5 mins
4. See error
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.8", "3.9", "3.10", "3.11"]
name: "Test SDK on py${{ matrix.python-version }} x ${{ matrix.os }} "
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Quickstart

Globus Compute is currently available on PyPI.

To install Globus Compute, please ensure you have python3.7+.::
To install Globus Compute, please ensure you have python3.8+.::

$ python3 --version

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Deprecated
^^^^^^^^^^

- ``globus-compute-sdk`` and ``globus-compute-endpoint`` drop support for Python3.7.
Python3.7 reached `end-of-life on 2023-06-27 <https://devguide.python.org/versions/>`_. We discontinue support for
Python3.7 since Parsl, an upstream core dependency, has also dropped support for
it (in ``parsl==2024.7.1``).
2 changes: 1 addition & 1 deletion compute_endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@
extras_require={
"test": TEST_REQUIRES,
},
python_requires=">=3.7",
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
Expand Down
2 changes: 1 addition & 1 deletion compute_sdk/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def parse_version():
"test": TEST_REQUIRES,
"docs": DOCS_REQUIRES,
},
python_requires=">=3.7",
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
Expand Down

0 comments on commit dc89e10

Please sign in to comment.