Skip to content

Commit 9832202

Browse files
committed
deps: Upgrade Flutter to work around Flutter version-solving bug
CI is broken by what looks like a bug in `flutter pub get`: Resolving dependencies... The current Flutter SDK version is 3.37.0-1.0.pre-175. Because zulip requires Flutter SDK version >=3.37.0-1.0.pre-89, version solving failed. Failed to update packages. It looks like the number at the end is being compared lexicographically, not numerically as it should be. That should be fixed, but for now, work around by just bumping the threshold to a version where that number starts with "1".
1 parent 3c94f6d commit 9832202

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pubspec.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1363,5 +1363,5 @@ packages:
13631363
source: path
13641364
version: "0.0.1"
13651365
sdks:
1366-
dart: ">=3.10.0-190.0.dev <4.0.0"
1367-
flutter: ">=3.37.0-1.0.pre-89"
1366+
dart: ">=3.10.0-213.0.dev <4.0.0"
1367+
flutter: ">=3.37.0-1.0.pre-175"

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ environment:
1414
# We use a recent version of Flutter from its main channel, and
1515
# the corresponding recent version of the Dart SDK.
1616
# Feel free to update these regularly; see README.md for instructions.
17-
sdk: '>=3.10.0-190.0.dev <4.0.0'
18-
flutter: '>=3.37.0-1.0.pre-89' # ed6e6387566140f97fd12c74380ab068171f75cf
17+
sdk: '>=3.10.0-213.0.dev <4.0.0'
18+
flutter: '>=3.37.0-1.0.pre-175' # 2e51c3f343fb70a14bfd1331af22f88ecc952818
1919

2020
# To update dependencies, see instructions in README.md.
2121
dependencies:

0 commit comments

Comments
 (0)