Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Require apptools 5.3 or later, Python 3.8 or later #584

Merged
merged 3 commits into from
Jul 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test-with-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest']
python-version: ['3.7', '3.8', '3.10', '3.11']
python-version: ['3.8', '3.10', '3.11']

runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ framework. You are free to use:
Prerequisites
-------------

The supported versions of Python are Python >= 3.7. Envisage requires:
The supported versions of Python are Python >= 3.8. Envisage requires:

* `apptools <https://pypi.org/project/apptools/>`_
* `traits <https://pypi.org/project/traits/>`_
Expand Down
1 change: 1 addition & 0 deletions etstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@

dependencies = {
"apptools",
"configobj",
"coverage",
"enthought_sphinx_theme",
"pyface",
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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']
Expand All @@ -28,7 +28,7 @@ classifiers = [
'Topic :: Software Development :: User Interfaces',
]
dependencies = [
'apptools',
'apptools[preferences]>=5.3',
'pyface',
'setuptools',
'traits>=6.2',
Expand Down