James Braza

Results 264 issues of James Braza

I noticed the docs had extra whitespace. This PR add `prettier` and `end-of-file-fixer` to `pre-commit` for standardized spacing

### setuptools version setuptools==71.1.0 ### Python version 3.12.4 ### OS macOS Sonoma 14.5 ### Additional environment information `build==1.2.1` ### Description I have a `MANIFEST.in` that looks like this: ```none #...

enhancement
help wanted

It would be nice to add an example GitHub Actions for publishing to PyPI with `rye` I am mainly wondering what is the preferred method to install Rye into GitHub...

### Steps to Reproduce I have a GitHub Action that looks like so with Python 3.12.4: ```yaml jobs: publish: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: eifinger/setup-rye@v4 with: enable-cache:...

### Steps to Reproduce Before running `rye add`, here is part of my `pyproject.toml`: ```toml [tool.rye] dev-dependencies = [ "pre-commit", "pylint-pydantic", "pylint>=3.2", # Pin to keep recent" "pytest", "pytest-asyncio", "pytest-cov>=5",...

I have a folder structure like this: ```none  . ├──  src │ └──  package │ ├──  __init__.py │ ├──  foo.py │ ├──  py.typed │...

For long `eval` invocations (10+ minutes), there is a handy progress bar. I also specify `--output` to persist the output to disk. For those who want to start reviewing the...

enhancement

I have 248 `tests` in a `promptfooconfig.yaml`. However, running `promptfoo eval` I see 139/310: ```none [██████████████████░░░░░░░░░░░░░░░░░░░░░░] 44% | ETA: 659s | 139/310 | anthropic:messages:claude-3-sonnet-20240229 "Q: {{quest" question=W ``` Where does...

bug

In https://github.com/astral-sh/ruff/issues/11880 today with `validate-pyproject==0.18`, I am getting an error that says: ```none [ERROR] `tool.ruff.lint` cannot be validated by any definition: ``` The actual error was in an `extend-select` field...

When running `mypy` on modules that import from `voyagai`, it fails with: ```none app/patches.py:16:1: error: Skipping analyzing "voyageai": module is installed, but missing library stubs or py.typed marker [import-untyped] from...