Steve Dignam
Steve Dignam
Does using `/*` do what you want? With this lib I'm hoping to keep compatibility with github's behavior -- how does github handle the `/`? The spec doesn't seem to...
Interesting, when I setup `/` as the pattern git's ignore setup doesn't consider `/foo`, `bar/buzz`, `buzz.js`, `/a/b/c/d/e/f.txt` to match this test checks the pattern matching using git as the source...
Is the actual text of the file: /build/logs/log.txt @ghost or does it include the CODEOWNERS heading as well?
Maybe this is another case of behavior differing from git? Git ignore says it doesn't match: ``` _______________________________________________________________ test_specific_patterns_against_git[single-file regression] _______________________________________________________________ name = 'single-file regression', pattern = '/build/logs/log.txt', paths =...
I think this behavior matches git's ignore behavior: ```diff diff --git a/codeowners/test_codeowners.py b/codeowners/test_codeowners.py index 7a9172a..def241d 100644 --- a/codeowners/test_codeowners.py +++ b/codeowners/test_codeowners.py @@ -479,6 +479,14 @@ GO_CODEOWNER_EXAMPLES = [ # "bar[0-5].log": True,...
oh hmm, maybe I pushed something to pypi and didn't merge it
I think I may have run into the same issue when trying to install `black`: OS: MacOS 10.15.3 python: Python 3.7.3 pyflow: pyflow 0.2.4 ```shell ❯ cd "$(mktemp -d)" &&...
Working for me now, thanks! ```shell ❯ cd "$(mktemp -d)" && pyflow init && RUST_BACKTRACE=1 pyflow install black Created `pyproject.toml` 🐍 Setting up Python... Found lockfile ⬇ Installing black 19.10.0b0...
[Looking at the docs](https://motor.readthedocs.io/en/stable/tutorial-asyncio.html), the functionality looks pretty similar to the sync client however, I don't use `motor` myself so I don't really have a need/motivation for writing the type...
Hmm weird, I can't reproduce. What version of python are you running? This is what I get: ``` $ python3 -m venv .venv $ ./.venv/bin/pip install mongo-types Collecting mongo-types Downloading...