Peter Bittner

Results 526 comments of Peter Bittner
trafficstars

## This Project Is Maintained > This project is dead already. No release since 2018. This project is certainly not dead. It's in popular use, and the main branch has...

Any progress on this? **EDIT:** Is the Ansible project's aversion against The Foreman, as mentioned in https://github.com/Nosmoht/ansible-module-foreman/issues/10#issuecomment-147967228, still relevant?

Alternatively, maybe compare the feature set with [foreman-ansible-modules](https://github.com/theforeman/foreman-ansible-modules/tree/master/modules) and decide what to do?

How about a [gitter.im](https://gitter.im/) chat room? That's easy to use, works online (like IRC) as well as offline (email notifications), is well integrated with GitHub, and is free for Open...

> so I do `from mypkg.subpkg import x` everywhere Note that's it's not necessary to use absolute imports _everywhere_. It's sufficient to use absolute imports in the script you're supplying...

Every Python environment created by Tox gets `pysnooper` installed. The workflow is roughly: 1. Create virtualenv for Python x.y (e.g. Python 3.7 for `py37`) 1. Run `python setup.py install` (i.e....

What is missing indeed is that tests are run on Windows and macOS. We've done this with PythonTurtle already, it's tedious but it's feasible, it's not magic. And more tests,...

You may want to take a look at the Tox [System Overview](https://tox.readthedocs.io/en/latest/index.html#system-overview) and the related explanations in the Tox documentation.

@enadol: This behavior is normal on any GNU/Linux system. > PermissionError: [Errno 13] Permission denied: '/usr/local/lib/python3.4/dist-packages/pysnooper' The error says, you - user `pi` - are not allowed to write in...

If you can't run `pip install` globally on your machine you have two straight-forward options: 1. Clone this repository and run `python setup.py develop`. This strategy will always refer to...