-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require apptools 5.3 or later, Python 3.8 or later (#584)
This PR updates the apptools dependency to apptools >= 5.3, and deals with various pieces of fallout from that change: Detailed changes: - require `apptools >= 5.3`, which contains some fixes that we need for some upcoming bugfixes on this repository (see #583) - require `apptools[preferences]` rather than just plain `apptools`, since version 5.3.0 of `apptools` no longer declares `configobj` as an explicit dependency, and Envisage preferences depend on `configobj` - similarly, require `configobj` explicitly in `etstool.py`, since EDS doesn't support optional requirements - require Python >= 3.8, since `apptools` now also requires Python >= 3.8, and `apptools >= 5.3.0` is not available for Python 3.7
- Loading branch information
1 parent
4ec68a4
commit 9c520cc
Showing
4 changed files
with
5 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,6 +104,7 @@ | |
|
||
dependencies = { | ||
"apptools", | ||
"configobj", | ||
"coverage", | ||
"enthought_sphinx_theme", | ||
"pyface", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ name = 'envisage' | |
version = '7.0.3' | ||
description = 'Extensible application framework' | ||
readme = 'README.rst' | ||
requires-python = '>= 3.7' | ||
requires-python = '>= 3.8' | ||
license = {file = 'LICENSE.txt'} | ||
authors = [{name = 'Enthought', email = '[email protected]'}] | ||
keywords = ['extensible', 'plugin', 'application', 'framework'] | ||
|
@@ -28,7 +28,7 @@ classifiers = [ | |
'Topic :: Software Development :: User Interfaces', | ||
] | ||
dependencies = [ | ||
'apptools', | ||
'apptools[preferences]>=5.3', | ||
'pyface', | ||
'setuptools', | ||
'traits>=6.2', | ||
|