Skip to content

Commit

Permalink
Enable unit tests and fix widgets installation on Python 3.11 (#656)
Browse files Browse the repository at this point in the history
* Add Python 3.11 unit tests

* update changelog
  • Loading branch information
michaelnchin authored Jul 24, 2024
1 parent 6331897 commit 1c88411
Show file tree
Hide file tree
Showing 4 changed files with 5 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.8', '3.10']
python-version: ['3.8', '3.10', '3.11']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd
- Added better `%reset` user messaging on status check timeout ([Link to PR](https://github.com/aws/graph-notebook/pull/652))
- Modified the `%reset --snapshot` option to use the CreateGraphSnapshot API ([Link to PR](https://github.com/aws/graph-notebook/pull/654))
- Upgraded `setuptools` dependency to 70.x ([Link to PR](https://github.com/aws/graph-notebook/pull/649))
- Experimental build support for Python 3.11 ([Link to PR](https://github.com/aws/graph-notebook/pull/645))
- Experimental support for Python 3.11 ([PR #1](https://github.com/aws/graph-notebook/pull/645)) ([PR #2](https://github.com/aws/graph-notebook/pull/656))

## Release 4.5.0 (July 15, 2024)

Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ itables>=2.0.0,<=2.1.0
pandas>=1.3.5,<=1.5.3
numpy<1.24.0
nest_asyncio>=1.5.5,<=1.5.6
async-timeout>=4.0,<5.0

# requirements for testing
botocore~=1.34.74
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@ def get_version():
'itables>=2.0.0,<=2.1.0',
'pandas>=1.3.5,<=1.5.3',
'numpy<1.24.0',
'nest_asyncio>=1.5.5,<=1.5.6'
'nest_asyncio>=1.5.5,<=1.5.6',
'async-timeout>=4.0,<5.0'
],
package_data={
'graph_notebook': ['graph_notebook/widgets/nbextensions/**',
Expand Down

0 comments on commit 1c88411

Please sign in to comment.