Skip to content

Commit

Permalink
use extras_require to specify tests (#688)
Browse files Browse the repository at this point in the history
* use extras_require to specify tests

* Update ChangeLog.md

---------

Co-authored-by: Michael Chin <[email protected]>
  • Loading branch information
bauer-at-work and michaelnchin authored Sep 5, 2024
1 parent 40614cf commit 5cd4830
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
],
}
)

0 comments on commit 5cd4830

Please sign in to comment.