Skip to content

Commit

Permalink
Deprecate Python 3.7 support (#551)
Browse files Browse the repository at this point in the history
* Deprecate Python 3.7 support

* update changelog
  • Loading branch information
michaelnchin authored Dec 21, 2023
1 parent 6299a10 commit 2de38f8
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.8',
'License :: OSI Approved :: Apache Software License'
],
keywords='jupyter neptune gremlin sparql',
Expand Down

0 comments on commit 2de38f8

Please sign in to comment.