diff --git a/ChangeLog.md b/ChangeLog.md index 30b13f53..cb5ba9db 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -10,6 +10,7 @@ Starting with v1.31.6, this file will contain a record of major features and upd - Added `--export-to` JSON file option to `%%graph_notebook_config` ([Link to PR](https://github.com/aws/graph-notebook/pull/684)) - Improved iPython config directory retrieval logic ([Link to PR](https://github.com/aws/graph-notebook/pull/687)) - Fixed `%db_reset` output for token modes ([Link to PR](https://github.com/aws/graph-notebook/pull/691)) +- Use `extras_require` to specify tests ([Link to PR](https://github.com/aws/graph-notebook/pull/688)) ## Release 4.5.2 (August 15, 2024) diff --git a/setup.py b/setup.py index c9e8aa02..0d422c21 100644 --- a/setup.py +++ b/setup.py @@ -105,7 +105,9 @@ def get_version(): 'License :: OSI Approved :: Apache Software License' ], keywords='jupyter neptune gremlin sparql', - tests_require=[ - 'pytest==6.2.5' - ] + extras_require={ + 'test': [ + 'pytest==6.2.5' + ], + } )