-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
camkes-deps: fully remove orderedset; bump version
- commit 4f7bca1 replaced orderedset by the maintained ordered-set, but did no yet remove the dependency. Since on more recent python version the dependency install now fails, we are removing it completely. - make python 3 requirement explicit To be released on PyPi simultaneously with the next CAmkES release. Closes #124 Signed-off-by: Gerwin Klein <[email protected]>
- Loading branch information
Showing
2 changed files
with
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
To add a python dependency, add it to the DEPS list below. | ||
To publish using these instructions, you need the virtualenv package | ||
To publish using these instructions, you need the virtualenv package | ||
installed, and a properly set up ~/.pypirc file. | ||
To publish to pypitest: | ||
|
@@ -29,7 +29,6 @@ | |
'aenum', | ||
'jinja2>=3.0.0', | ||
'ordered-set', | ||
'orderedset', # For older source trees: remove in 0.7.4 | ||
'plyplus', | ||
'pyelftools', | ||
'sel4-deps', | ||
|
@@ -43,7 +42,7 @@ | |
|
||
setup( | ||
name='camkes-deps', | ||
version='0.7.3', | ||
version='0.7.4', | ||
description='Metapackage for downloading build dependencies for CAmkES', | ||
long_description=""" | ||
The CAmkES tool has many python dependencies. This package depends on them all | ||
|
@@ -58,4 +57,5 @@ | |
author='TrustworthySystems', | ||
author_email='[email protected]', | ||
install_requires=DEPS, | ||
python_requires='>=3' | ||
) |