Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
Already on GitHub? Sign in to your account
Python plugin improvements #771
Merged
sergiusens
merged 34 commits into
snapcore:master
from
sergiusens:python-plugin-improvements
Sep 7, 2016
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
266bcc8
python3: make use of PYTHONUSERBASE
sergiusens 1b6deb9
consolidate plugins
sergiusens c694348
Merge branch 'master' into python-plugin-improvements
sergiusens cbfa8a3
nicer additions
sergiusens e2202b4
Merge branch 'python-plugin-improvements' of github.com:sergiusens/sn…
sergiusens 950503c
Merge branch 'master' into python-plugin-improvements
sergiusens 4ac78b3
Merge branch 'python-plugin-improvements' of github.com:sergiusens/sn…
sergiusens b48fd56
glob everywhere in the python integration tests
sergiusens 822023a
always set PYTHONPATH
sergiusens 3425d8a
make integration pass
sergiusens e6a176b
moar fixes
sergiusens 467d84f
units
sergiusens 1ba2e1e
Merge branch 'master' into python-plugin-improvements
sergiusens b9b7a15
static
sergiusens 017b443
Merge branch 'python-plugin-improvements' of github.com:sergiusens/sn…
sergiusens 8ce3941
Python.h
sergiusens e094ccc
baseplugin coverage
sergiusens 42308e7
Merge branch 'master' into python-plugin-improvements
sergiusens fb9ecff
consolidate python plugins
sergiusens 2360107
list plugins ftw
sergiusens 4e77dfe
add enum
sergiusens 3f6d73d
pull properties
sergiusens 54749b8
no if True
sergiusens 249cc83
assert
sergiusens 11418de
staged
sergiusens 88d07bf
text
sergiusens 2a867a5
python cwd dir
sergiusens 653c716
remove rogue print
sergiusens c269058
static
sergiusens 70d9f7a
static
sergiusens 8928976
use the python plugin
sergiusens 7a49eb5
change modes
sergiusens 98b06d2
be less strict about pythonness
sergiusens e8615e9
Merge branch 'master' into python-plugin-improvements
sergiusens
Jump to file or symbol
Failed to load files and symbols.
| @@ -0,0 +1,22 @@ | ||
| +name: python-with-stage-packages | ||
| +version: 0 | ||
| +summary: this will install yamllint from pypi | ||
| +description: | | ||
| + Install yamllint from pypi but use pyyaml as a stage-packages entry. | ||
| +confinement: strict | ||
| +grade: devel | ||
| + | ||
| +parts: | ||
| + python2: | ||
| + plugin: python2 | ||
| + stage-packages: [python-yaml] | ||
| + python-packages: ['yamllint'] | ||
| + stage: | ||
| + - -bin/yamllint | ||
| + snap: | ||
| + - -bin/yamllint | ||
| + | ||
| + python3: | ||
| + plugin: python3 | ||
| + stage-packages: [python3-yaml] | ||
| + python-packages: ['yamllint'] |
Oops, something went wrong.