From 2176656453d0956e251aabeab2b02e7e9de6e728 Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Wed, 20 Dec 2023 18:13:55 -0800 Subject: [PATCH 1/2] Deprecate Python 3.7 support --- .github/workflows/unit.yml | 2 +- README.md | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/unit.yml b/.github/workflows/unit.yml index a29aed43..2c9b0e2d 100644 --- a/.github/workflows/unit.yml +++ b/.github/workflows/unit.yml @@ -7,7 +7,7 @@ jobs: if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == true strategy: matrix: - python-version: ['3.7', '3.8', '3.10'] + python-version: ['3.8', '3.10'] runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 diff --git a/README.md b/README.md index 4860f524..81978d81 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ It is recommended to check the [ChangeLog.md](ChangeLog.md) file periodically to You will need: -* [Python](https://www.python.org/downloads/) 3.7.x-3.10.13 +* [Python](https://www.python.org/downloads/) 3.8.x-3.10.13 * A graph database that provides one or more of: * A SPARQL 1.1 endpoint * An Apache TinkerPop Gremlin Server compatible endpoint diff --git a/setup.py b/setup.py index b1ce21a5..86a79ff8 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ def get_version(): cmdclass=cmd_class, classifiers=[ 'Development Status :: 5 - Production/Stable', - 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.10', 'License :: OSI Approved :: Apache Software License' ], keywords='jupyter neptune gremlin sparql', From 7e0bad3d40d58d17b080a24215386d1e1b44cefd Mon Sep 17 00:00:00 2001 From: Michael Chin Date: Wed, 20 Dec 2023 18:18:32 -0800 Subject: [PATCH 2/2] update changelog --- ChangeLog.md | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog.md b/ChangeLog.md index 47a23437..17be8a1e 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -3,6 +3,7 @@ Starting with v1.31.6, this file will contain a record of major features and updates made in each release of graph-notebook. ## Upcoming +- Deprecated Python 3.7 support ([Link to PR](https://github.com/aws/graph-notebook/pull/551)) ## Release 4.0.2 (Dec 14, 2023) - Fixed `neptune_ml_utils` imports in `03-Neptune-ML` samples ([Link to PR](https://github.com/aws/graph-notebook/pull/546)) diff --git a/setup.py b/setup.py index 86a79ff8..2fa6b5ae 100644 --- a/setup.py +++ b/setup.py @@ -100,7 +100,7 @@ def get_version(): cmdclass=cmd_class, classifiers=[ 'Development Status :: 5 - Production/Stable', - 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.8', 'License :: OSI Approved :: Apache Software License' ], keywords='jupyter neptune gremlin sparql',