gresavage

Results 10 comments of gresavage

@bluescarni I had the same issue and rolling back to `dill==0.3.5.1` indeed fixed the issue

I was consistently having this issue as well with mypy 0.993 when running as a pre-commit hook. As with @Alex031544 it was only occurring on files without findings. I upgraded...

> I was consistently having this issue as well with mypy 0.993 when running as a pre-commit hook. As with @Alex031544 it was only occurring on files without findings. >...

Sorry to bombard the thread - I am using a conda (specifically mamba) environment and found the following mypy info: ```bash mypy 1.4.1 py310h2372a71_0 conda-forge mypy_extensions 1.0.0 pyha770c72_0 conda-forge ```...

Take a look at the [`observation` function](https://github.com/Farama-Foundation/PettingZoo/blob/master/pettingzoo/mpe/simple_adversary/simple_adversary.py#L229) for the scenario. On [line 247](https://github.com/Farama-Foundation/PettingZoo/blob/master/pettingzoo/mpe/simple_adversary/simple_adversary.py#L247) we see that if the agent is a good agent you will observe: ``` rel_goal_x, rel_goal_y, (rel_lm_x,...

Could you clarify the question? What issue are you having? `simple_adversary_v3` is still present: [see code](https://github.com/Farama-Foundation/PettingZoo/blob/master/pettingzoo/mpe/simple_adversary_v3.py)

@btjanaka after thinking about this more, instead of `self = _base_archive` after initialization it might be better to override `__new__`, to make an ad-hoc class with the `_base_archive` in the...

> I understand the desire, but it seems like this is sort of something for the VSCode team to tackle. I don't understand the nuances of the debugger setup and...

@franperezlopez UV abides by [PEP0405](https://peps.python.org/pep-0405/). So the UV virtual environment is literally the same as choosing the `Venv` from the dropdown in the image you shared... it's nothing special and...

@btjanaka FYI I'm working on the Novelty and NSLC rankers right now.