-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Andreas Florath <[email protected]>
- Loading branch information
Showing
9 changed files
with
115 additions
and
179 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
IMPORTANT | ||
========= | ||
|
||
CONFIGURATION IS UNDERGOING A MAJOR RESTRUCTURING. | ||
THE CURRENT VERSIONS (V22-V24) WILL (ONLY) BE ONE STEP IN THE | ||
DIRECTION THE CONFIGURATION WILL CHANGE TO. | ||
BECAUSE THE STRUCTURE CHANGED, THERE IS NO AUTOMATIC UPDATE | ||
POSSIBLE. | ||
IF YOU HAVE A RUNNING INSTALLED rmtoo THERE IS NO NEED TO UPDATE | ||
DIRECTLY (IF YOU DO NOT NEED ANY OF THE NEW FEATURES). | ||
IF YOU WANT TO USE THE NEW FEATURES, PLEASE FIRST READ THE | ||
DOCUMENTATION (rmtoo-config3(5)). IF YOU HAVE PROBLEMS WITH THIS | ||
FEEL FREE TO CONTACT OUR SUPPORT AT [email protected] | ||
|
||
|
||
24.0.0 | ||
====== | ||
|
||
User visible changes | ||
-------------------- | ||
|
||
* Support for python3. | ||
* Support for virtualenv. | ||
* Support for installation with pip (pypi). | ||
* Removed dependency to legacy included versions of other projects | ||
(async, git, gitdb, odfpy). | ||
* Complete support for UTF-8. | ||
|
||
|
||
Internal Changes | ||
---------------- | ||
|
||
* Started pep8 cleanup: many small syntax changes. | ||
* Introduced tox, clean up setup.py, introduced requirements.txt. | ||
* Many, many code cleanups. | ||
* CI / quality checks added: codecov.io, sonarqube.com, covertity, | ||
codeclimate.com |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,19 +1,11 @@ | ||
# | ||
# rmtoo __init__.py | ||
# | ||
# (c) 2010,2017 by flonatel ([email protected]) | ||
# | ||
# For licensing details see COPYING | ||
# | ||
''' | ||
rmtoo | ||
Free and Open Source Requirements Management Tool | ||
__package__ = "rmtoo" | ||
__all__ = ["modules", "lib", "tests", "outputs"] | ||
Master __init__.py | ||
# | ||
# Add shared library path to sys.path | ||
# | ||
import os | ||
import sys | ||
sys.path.append(os.path.join(os.path.split(__file__)[0], sys.platform)) | ||
del os | ||
del sys | ||
(c) 2011,2017 by flonatel GmbH & Co. KG | ||
For licensing details see COPYING | ||
''' | ||
__all__ = ["inputs", "lib", "tests", "outputs"] |
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
Oops, something went wrong.