Skip to content

Commit

Permalink
Deprecate Python 3.6 support (aws#353)
Browse files Browse the repository at this point in the history
* Upgrade minimum required Python version to 3.7.0

* Remove traitlets pin

* update changelog

Co-authored-by: Michael Chin <[email protected]>
  • Loading branch information
michaelnchin and michaelnchin authored Aug 11, 2022
1 parent c99c110 commit 1f12b34
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
runs-on: ubuntu-latest
needs: generate-stack-name
steps:
- name: Set up Python 3.6
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.7
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.6
python-version: 3.7
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd
- New Neptune ML - Text Encoding Tutorial notebook ([Link to PR](https://github.com/aws/graph-notebook/pull/338))
- Path: 04-Machine-Learning > Neptune-ML-06-Text-Encoding-Tutorial
- Added `--store-to` option to `%%graph_notebook_config` ([Link to PR](https://github.com/aws/graph-notebook/pull/347))
- Deprecated Python 3.6 support ([Link to PR](https://github.com/aws/graph-notebook/pull/353))
- Various results table improvements ([Link to PR](https://github.com/aws/graph-notebook/pull/349))

## Release 3.5.3 (July 25, 2022)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ It is recommended to check the [ChangeLog.md](ChangeLog.md) file periodically to

You will need:

* [Python](https://www.python.org/downloads/) 3.6.13-3.9.7
* [Python](https://www.python.org/downloads/) 3.7.0-3.9.7
* [RDFLib](https://pypi.org/project/rdflib/) 5.0.0
* A graph database that provides one or more of:
* A SPARQL 1.1 endpoint
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ ipython>=7.16.1,<7.17.0
ipykernel==5.3.4
neo4j==4.2.1
rdflib~=5.0.0
traitlets~=4.3.3
setuptools~=40.6.2
nbconvert<6
nbconvert>=6.3.0
jedi<0.18.0
markupsafe<2.1.0
itables>=1.0.0
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def get_version():
'neo4j==4.3.2',
'rdflib==5.0.0',
'ipykernel==5.3.4',
'nbconvert==5.6.1',
'nbconvert>=6.3.0',
'jedi<0.18.0',
'markupsafe<2.1.0',
'itables>=1.0.0',
Expand All @@ -96,7 +96,7 @@ def get_version():
cmdclass=cmd_class,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'License :: OSI Approved :: Apache Software License'
],
keywords='jupyter neptune gremlin sparql',
Expand Down

0 comments on commit 1f12b34

Please sign in to comment.