Skip to content

Commit

Permalink
Alright i think i got it
Browse files Browse the repository at this point in the history
  • Loading branch information
hmaarrfk committed Jul 10, 2024
1 parent 7100a27 commit 6332379
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ dependencies:
- textdistance >=4.2.0
- three-merge >=0.1.1
- watchdog >=0.10.3
- importlib-metadata >=4.6.0

# We can not refer to an environment.yml file from another
# So to get performant launches on mybinder.org, we have copied
Expand Down
5 changes: 5 additions & 0 deletions spyder/dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
# None for pynsist install for now
# (check way to add dist.info/egg.info from packages without wheels available)
WATCHDOG_REQVER = None if is_pynsist() else '>=0.10.3'
IMPORTLIB_METADATA_REQVER = '>=4.6.0'


# Optional dependencies
Expand Down Expand Up @@ -259,6 +260,10 @@
'package_name': "watchdog",
'features': _("Watch file changes on project directories"),
'required_version': WATCHDOG_REQVER},
{'modname': 'importlib_metadata',
'package_name': 'importlib-metadata',
'features': _('Access the metadata for a Python package'),
'required_version': IMPORTLIB_METADATA_REQVER},
]


Expand Down

0 comments on commit 6332379

Please sign in to comment.