canonical / ubuntu-desktop-installer

Ubuntu Desktop Installer
GNU General Public License v3.0
535 stars 94 forks source link

Dependencies are not resolved #2375

Open wolkenschieber opened 10 months ago

wolkenschieber commented 10 months ago

What happened?

When running flutter run, the dependency resolution fails with

Resolving dependencies... (4.4s)
Note: test_api is pinned to version 0.6.0 by flutter_test from the flutter SDK.
See https://dart.dev/go/sdk-version-pinning for details.

Because every version of flutter_test from sdk depends on test_api 0.6.0 and every version of ubuntu_test depends on test_api ^0.5.1, flutter_test from sdk is incompatible with ubuntu_test.
So, because ubuntu_desktop_installer depends on both flutter_test from sdk and ubuntu_test ^0.1.0-beta.1, version solving failed.

What was expected?

No response

Steps to reproduce

  1. Install lastest version of Flutter _Flutter (Channel stable, 3.13.7, on Arch Linux 6.5.6-arch2-1, locale deDE.UTF-8)
  2. Clone this repository
  3. Setup dependencies
  4. Dry-run the installer

Additional context

No response