James Braza

Results 57 comments of James Braza

Okay I have added the `known-modules` to my `setup.cfg` like so: ```cfg # Map namespace packages to imports for flake8-requirements # SEE: https://github.com/Arkq/flake8-requirements#customization known-modules = foo-bar:[foo.bar],foo-baz:[foo.baz],foo-spam:[foo.spam] ``` In actuality, I...

@AndydeCleyre thank you for the fast response! This almost works, except I need the `--unsafe-package=foo` to be uncommented at the bottom. So for example from bottom example above, `sniffio` needs...

I do hear your solution, and it makes sense. It requires having 1 `requirements.in` and 3 `requirements.txt`. Thanks for the proposed workaround! An aside is I wouldn't need to use...

> Passing them as unsafe during compilation ensures you won't get conflicts if one of your pinned deps starts depending on an unpinned dep, but I guess you don't need...

> EDIT: I guess you can easily drop `unpinned-requirements.txt` in favor of including those directly in `requirements.txt`, reducing the file count to 3. Just seeing this edit. I see what...

Ah I am tracking again. Thanks for your patience @AndydeCleyre ! 😄 So the workaround again works. Tho I still think it would be nice to have the ability to...

> The --exclude option would save me from a lot of ugly hackery with sed in several projects. Yeah that ticket has to do with what @IanTayler is saying on...

Working with the current master (`pip-compile==6.8.1.dev5+geed2719`), I discovered a potential bug with this. `requirements.in` ```txt setuptools unsafe-package ``` --- **Case 1** `pip-compile --no-header --no-emit-index-url --unsafe-package=unsafe-package requirements.in`: ```txt # The following...

I just did the vanilla `pyenv-win` install from the `README` on Windows, and also hit this same problem. After running the command per the instructions: ``` [System.Environment]::SetEnvironmentVariable('path', $env:USERPROFILE + "\.pyenv\pyenv-win\bin;"...

I agree this would be a great feature. Here is what I am seeing: ```PowerShell pyenv install 3.10:latest :: [Info] :: Mirror: https://www.python.org/ftp/python pyenv-install: definition not found: 3.10:latest ``` In...