Hugo

Results 1333 comments of Hugo

`pip-compile` compiles requirements into pinned versions. What you're trying to do is find outdated dependencies. I don't think that this falls in scope for `pip-compile`. Maybe https://pypi.org/project/pip-outdated/ is what you're...

Oh, actually, you can use: pip list --outdated It does exactly what you want.

Oh, you want to ignore outdated dependencies, that makes sense.

Huh, installing ` pip-tools` into a virtualenv, this works. But if I try to install system-wide, it doesn't. I'm installing it by basically building the wheel and then `python3 -m...

I can only reproduce with this `requirements.in`: ``` bizdays celery[redis] Django~=4.1.0 django-afip django-ckeditor django-debug-toolbar django-inlinecss-redux django-nested-admin django-phonenumber-field[phonenumberslite] django-polymorphic django-renderpdf django-storages[boto3] djangorestframework googlemaps ocaclient Pillow psycopg2-binary python-barcode PyYAML requests sentry-sdk djangorestframework-camel-case...

I think the main issue (at least based on the output of my initial post), is that there's no indication of _which_ wheel is failing to build in `pip-tool`'s error...

I'm seeing an issue which I think is basically the same this as described here: ```console > cat clippy.toml # Copyright 2023 Hugo Osvaldo Barrera # # SPDX-License-Identifier: EUPL-1.2 doc-valid-idents...

https://github.com/InfiniTimeOrg/InfiniTime/pull/961 is somewhat related: it tries to address one of the problematic scenarios with a different approach. However, looks like that patchset won't be merged, the solution proposed here is...

"raise wrist` by itself also triggers lots of false positives. TBH: I don't mind it waking in these situations (even if unnecessary), but I do mind it unlocking since that's...

So I understand the issue: both files being included define `struct ethhdr`. However, both of them defined _other_ types which are used, so removing either of them is not an...