Jason R. Coombs

Results 309 issues of Jason R. Coombs

Attempting to migrate a repo, I get the same error reported in later in #63: ``` $ python migrate.py yougov/fuzzy yougov/fuzzy bb-migration Please enter your GitHub password. Note: If your...

Github will return a 403 with a header indicating that a request was rate limited. The migration script can uses this information to more robustly respond under these conditions.

Currently, if one creates a command in Python and one interrupts it with Ctrl+C, it prints a full traceback and exits with a status 1. I'm inclined to think autocommand/automain...

Setuptools tests have started failing in the pytest-flake8 plugin: ``` AttributeError: module 'flake8.options.config' has no attribute 'ConfigFileFinder' ```

See https://github.com/pytest-dev/pytest/issues/8435 for background and https://github.com/jaraco/pytest-checkdocs/pull/9 for an example of how I addressed the issue in pytest-checkdocs.

Downstream projects, including [Tahoe-LAFS](/tahoe-lafs/tahoe-lafs), are adopting mypy for static type checking and currently must suppress failing typechecks that on foolscap types like `IRemoteReference`. If foolscap were to provide these stubs...

In [this comment](https://tahoe-lafs.org/trac/tahoe-lafs/ticket/3399#comment:21), I isolated an issue where mypy static analysis checks are failing on a foolscap Referenceable RemoteInterface. Given this minimal implementation: ``` # remote.py from foolscap.api import RemoteInterface,...

**Describe the bug** Discovered in pypa/distutils#165, adding `pyobjc` to the dependencies of the project caused the builds on macOS on Python 3.11 to start failing ([example](https://github.com/pypa/distutils/runs/7703160074?check_suite_focus=true)). **Platform information** * Python...

bug

As proposed in #62, this change allows `metadata.version` in a setup.cfg file to stand in for `bumpversion.current_version`, meaning that with this change, `bump2version` would work with zero config on a...

requires-decision
feature
requires-review

Currently, bump2version allows the `current_version` to be specified in `setup.cfg`. Setuptools also through declarative config allows versions to be defined in setup.cfg. However, if you try to define the bump2version...

feature-request
feature-approved