This repository has been archived by the owner on Apr 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 334
Merge develop to master for a new pypi release 1.0.2 #172
Open
abenassi
wants to merge
40
commits into
gak:master
Choose a base branch
from
abenassi:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
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
(it gets imported by the examples/graphviz/grouper.py example later)
Specify Custom Groups
With the current MANIFEST.in the scripts for generating examples and documentation are not actually included in the sdist. This ensures the documentation and example sources are included.
Ensure all files in docs are part of the sdist.
…output is not implemented yet.
Setting graphivz output format is broken: -f / --output-format is ignored. This is because self.output_format is adjusted internally, not output_type. The fix is to set "dest" property of the corresponding argument.
Fix graphviz output format setting
Fix .format() to work with older Python versions
Removed "json" output mode from the docs, because it looks like json output is not implemented yet
Make Readme badges uniform and SVG using shields.io
set all "trace" decorator parameters to None by default moved "trace" decorator tests from test_pycallgraph.py to test_decorators.py add setup.cfg config to wheel package support
Add first decorator
Fix for gak#85. When using the following pycallgraph invocation: python c:\Python27\Scripts\pycallgraph graphviz -l "c:\Program Files (x86)\Graphviz2.36\bin\dot.exe" -- scapy_start_profile.py the tool could not be found. After the fix it's ok to use such paths.
Allow spaces in tool path.
Update readme with a typo correction.
Use subprocess instead of os.system()
`--use-mirrors` was removed as a `pip` option (pypa/pip#1098)
Update .travis.yaml
* develop: (27 commits) Fix decorator implementation and import. Document use of decorators in README. Update .travis.yaml Proper way of running system calls http://stackoverflow.com/a/3791476/1497443 Update readme with a typo correction. [Bugfix] Allow spaces in tool path fix .travis.yml fix .travis.yml test with python 3.5-dev nightly builds and pypy renamed decorator from "pycall_profile" to "trace" set all "trace" decorator parameters to None by default moved "trace" decorator tests from test_pycallgraph.py to test_decorators.py add setup.cfg config to wheel package support pep8 pep8 and add newline decorators from @ivannotes Make Readme badges uniform and SVG using shields.io Fix graphviz output format setting Removed "json" output mode from the docs, because it looks like json output is not implemented yet. more format fixes Make .format() work with older Python versions Ensure all files in docs are part of the sdist. remove unused import (was copy and pasted from filter example) add main to __all__ so that flake8 won't complain about unused import ... # Conflicts: # README.rst
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I've seen that
develop
branch is behindmaster
but merging the seems to be ok. I've added a previous PR indevelop
fixing and documenting decorators but now merging them tomaster
because I would like to release the fix to a new pypi version.Could it be possible to release this under 1.0.2 version to pypi?
Thanks and looking forward your comments.