-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #24 from LCAV/feature/srls_improvement
Algorithm improvements
- Loading branch information
Showing
18 changed files
with
292 additions
and
190 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,9 +5,10 @@ python: | |
|
||
install: | ||
- pip install -r requirements.txt | ||
- pip install -r optional_requirements.txt | ||
|
||
script: | ||
- pytest | ||
- pytest | ||
|
||
notifications: | ||
email: [email protected] |
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,24 @@ | ||
How to contribute | ||
================= | ||
|
||
Release new version | ||
------------------- | ||
|
||
1. Change the version number in | ||
- setup.py | ||
- docs/source/conf.py | ||
|
||
2. Add a new section to CHANGELOG.md | ||
|
||
3. Run the following commands | ||
|
||
python3 setup.py sdist bdist_wheel | ||
python3 -m twine upload --repository-url https://test.pypi.org/legacy/ dist/* | ||
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps example-pkg-your-username | ||
python3 -c "import pylocus.lateration" # test that it worked. | ||
|
||
4. If all looks ok, then run | ||
|
||
python3 -m twine upload dist/* | ||
|
||
5. If above does not work, make sure that the information in ~/.pypirc is up to date. |
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,2 @@ | ||
cvxpy >= 1.0.6 | ||
cvxopt >= 1.1.9 |
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,7 +1 @@ | ||
from .settings import * | ||
from .algorithms import * | ||
from .basics import * | ||
from .plots_cti import * | ||
from .point_set import * | ||
|
||
__version__ = "0.0.3" | ||
### This file exists only to tell python that this folder is a package. |
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
Oops, something went wrong.