Skip to content

Reinstate Python 3.7 support #479

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.8', '3.10']
python-version: ['3.7', '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
- Reinstate Python 3.7 support for compatibility with legacy AL1 Neptune Notebooks ([Link to PR](https://github.com/aws/graph-notebook/pull/479))

## Release 3.8.0 (April 16, 2023)
- Added support for Python 3.10 ([Link to PR](https://github.com/aws/graph-notebook/pull/476))
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ It is recommended to check the [ChangeLog.md](ChangeLog.md) file periodically to

You will need:

* [Python](https://www.python.org/downloads/) 3.8.0-3.10.11
* [Python](https://www.python.org/downloads/) 3.7.x-3.10.11
* A graph database that provides one or more of:
* A SPARQL 1.1 endpoint
* An Apache TinkerPop Gremlin Server compatible endpoint
Expand Down
6 changes: 3 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jupyter-contrib-nbextensions<=0.7.0
widgetsnbextension<=3.6.1
gremlinpython>=3.5.1,<=3.6.2
requests>=2.27.0,<=2.28.2
ipython==8.10.0
ipython>=7.16.1,<=8.10.0
ipykernel==5.3.4
neo4j>=4.4.9,<5.0.0
rdflib==5.0.0
Expand All @@ -19,9 +19,9 @@ nbconvert>=6.3.0,<=7.2.8
jedi>=0.18.1,<=0.18.2
markupsafe<2.1.0
itables>=1.0.0,<=1.5.2,!=1.4.3,!=1.4.4
pandas>=1.4.0,<=1.5.3
pandas>=1.3.5,<=1.5.3
numpy<1.24.0
nest_asyncio==1.5.6
nest_asyncio>=1.5.5,<=1.5.6

# requirements for testing
botocore~=1.21.49
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,16 +80,16 @@ def get_version():
'jupyter==1.0.0',
'botocore>=1.21.49,<=1.29.53',
'boto3>=1.18.49,<=1.26.53',
'ipython==8.10.0',
'ipython>=7.16.1,<=8.10.0',
'neo4j>=4.4.9,<5.0.0',
'rdflib==5.0.0',
'ipykernel==5.3.4',
'nbconvert>=6.3.0,<=7.2.8',
'jedi>=0.18.1,<=0.18.2',
'itables>=1.0.0,<=1.5.2,!=1.4.3,!=1.4.4',
'pandas>=1.4.0,<=1.5.3',
'pandas>=1.3.5,<=1.5.3',
'numpy<1.24.0',
'nest_asyncio==1.5.6'
'nest_asyncio>=1.5.5,<=1.5.6'
],
package_data={
'graph_notebook': ['graph_notebook/widgets/nbextensions/**',
Expand Down