Results 5 comments of iotanbo

Indeed, syntax of `StateNotifierProvider` has changed in version 0.14 as could be seen in the official repo: [https://github.com/rrousselGit/river_pod/blob/master/examples/todos/lib/main.dart](https://github.com/rrousselGit/river_pod/blob/master/examples/todos/lib/main.dart). ```dart final todos = ref.watch(todoListProvider); context.read(todoListProvider.notifier).add(value); ``` But the [documenatation of the...

Actually, here is a migration guide: [https://riverpod.dev/docs/migration/0.13.0_to_0.14.0](https://riverpod.dev/docs/migration/0.13.0_to_0.14.0)

Tried `poetry` on Ubuntu20.04, same problem. After installing it `pyenv` stopped working as intended. Before: ```bash python --version # Python 3.8.5 python3.9 --version # Python 3.9.5 ``` After: ```bash python...

I fixed the `pyenv` issue, but running `poetry run -h` yields following result: ```bash $ poetry run -h FileNotFoundError [Errno 2] No such file or directory: b'/snap/bin/-h' at ~/.pyenv/versions/3.8.6/lib/python3.8/os.py:601 in...

Finally I fixed my problem: it was the bad entry in the `pyproject.toml`: ```toml [tool.poetry.scripts] poetry-test = "poetry_test.console:main" ``` Here `poetry-test` is the script to be executed like `poetry run...