-
## Bug Description
I have used your template before (approx 1 year ago) without issues. Now, I re-cloned your project, installed it's dependencies, and I am trying to run the training job: `poetry …
-
```
import boto3
def setup_buckets() -> boto3.client:
s3_client = boto3.client('s3')
s3_client.create_bucket(Bucket='foo')
return s3_client
```
results in:
```
foobar.py:4…
jedie updated
1 month ago
-
Consider this example based on that in #2,
```python
from typing import Annotated
import yapx
def say_hello(
name: Annotated[
str, yapx.arg(help="Who or what to greet?", metava…
-
```bash
python3 basic_example.py
```
Output
```text
The response of add_vertex:
Result: Status: 0, message: OK, value: {'message': 'Vertex data is successfully inserted'}
exception: 1 vali…
-
### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
Hi,
I have some models for which I annotate fields using `ForwardRef`s, however in my scenario the ultimate definition…
-
## Describe the bug
Fails to parse type of optional `num_iteration` parameter for LightGBM's predict method
```
INFO:[2024-10-24 10:47:23.863] - Analyzing arguments in .
WARNING:[2024-10-24 10:4…
-
**Environment**
![image](https://user-images.githubusercontent.com/59192491/196321131-05c1b453-511f-4af3-b63d-44e793356fe6.png)
**Steps to Reproduce**
1.Create a Python Application project
2.T…
-
Currently this library requires Python 3.10, but does not specify this in setup.py.
For example with Python 3.9, I receive
```python
Python 3.9.17 | packaged by conda-forge | (main, Aug 10 2023, …
-
### Initial Checks
- [X] I confirm that I'm using Pydantic V2
### Description
I define a custom Pydantic type with `typing.Annotated` + `pydantic.PlainValidator(func, json_schema_input_type=O…
-
Hi,
I’m trying to make several custom changes to Mitsuba, and I want to install it into my conda environment using pip so that I can directly use Mitsuba. However, I'm having trouble pip installing…