Skip to content

Commit 9a81330

Browse files
authored
Deprecate Python 3.8 support (#683)
* Deprecate Python 3.8 support * Bump Pandas floor * update changelog
1 parent f8f6ef1 commit 9a81330

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.github/workflows/unit.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.fork == true
88
strategy:
99
matrix:
10-
python-version: ['3.8', '3.10', '3.11']
10+
python-version: ['3.9', '3.10', '3.11']
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v2

ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd
44

55
## Upcoming
66

7+
- Deprecated Python 3.8 support ([Link to PR](https://github.com/aws/graph-notebook/pull/683))
78
- Upgraded Neo4j Bolt driver to v5.x ([Link to PR](https://github.com/aws/graph-notebook/pull/682))
89
- Added `%get_import_task` line magic ([Link to PR](https://github.com/aws/graph-notebook/pull/668))
910

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ It is recommended to check the [ChangeLog.md](ChangeLog.md) file periodically to
9696

9797
You will need:
9898

99-
* [Python](https://www.python.org/downloads/) 3.8.x-3.10.13
99+
* [Python](https://www.python.org/downloads/) 3.9.x-3.10.14
100100
* A graph database that provides one or more of:
101101
* A SPARQL 1.1 endpoint
102102
* An Apache TinkerPop Gremlin Server compatible endpoint

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ nbconvert>=6.3.0,<=7.2.8
2020
jedi>=0.18.1,<=0.18.2
2121
markupsafe<2.1.0
2222
itables>=2.0.0,<=2.1.0
23-
pandas>=2.0.0,<=2.2.2
23+
pandas>=2.1.0,<=2.2.2
2424
numpy<1.24.0
2525
nest_asyncio>=1.5.5,<=1.5.6
2626
async-timeout>=4.0,<5.0

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def get_version():
8888
'nbconvert>=6.3.0,<=7.2.8',
8989
'jedi>=0.18.1,<=0.18.2',
9090
'itables>=2.0.0,<=2.1.0',
91-
'pandas>=2.0.0,<=2.2.2',
91+
'pandas>=2.1.0,<=2.2.2',
9292
'numpy<1.24.0',
9393
'nest_asyncio>=1.5.5,<=1.5.6',
9494
'async-timeout>=4.0,<5.0'
@@ -101,7 +101,7 @@ def get_version():
101101
cmdclass=cmd_class,
102102
classifiers=[
103103
'Development Status :: 5 - Production/Stable',
104-
'Programming Language :: Python :: 3.8',
104+
'Programming Language :: Python :: 3.10',
105105
'License :: OSI Approved :: Apache Software License'
106106
],
107107
keywords='jupyter neptune gremlin sparql',

0 commit comments

Comments
 (0)