Skip to content

Commit a3015da

Browse files
committed
Migrate to uv
1 parent 7874444 commit a3015da

File tree

15 files changed

+3155
-3942
lines changed

15 files changed

+3155
-3942
lines changed

.config/dotnet-tools.json

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,25 @@
33
"isRoot": true,
44
"tools": {
55
"paket": {
6-
"version": "8.0.3",
6+
"version": "9.0.2",
77
"commands": [
88
"paket"
9-
]
9+
],
10+
"rollForward": false
1011
},
1112
"fable": {
12-
"version": "4.9.0",
13+
"version": "4.24.0",
1314
"commands": [
1415
"fable"
15-
]
16+
],
17+
"rollForward": false
1618
},
1719
"fantomas": {
1820
"version": "6.2.3",
1921
"commands": [
2022
"fantomas"
21-
]
23+
],
24+
"rollForward": false
2225
}
2326
}
2427
}

.github/workflows/build-and-test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
dotnet-version: |
2323
6.x
2424
8.x
25+
9.x
2526
2627
- name: Setup dotnet tools
2728
run: dotnet tool restore

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
dotnet-version: |
2020
6.x
2121
8.x
22+
9.x
2223
2324
- name: Setup tools
2425
run: dotnet tool restore

.paket/Paket.Restore.targets

Lines changed: 505 additions & 497 deletions
Large diffs are not rendered by default.

examples/timeflies/poetry.lock

Lines changed: 0 additions & 134 deletions
This file was deleted.

examples/timeflies/pyproject.toml

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11

2-
[tool.poetry]
2+
[project]
33
name = "timeflies"
44
version = "0.1.0"
55
description = "Fable Timeflies Demo"
6-
authors = ["Dag Brattli <[email protected]>"]
6+
authors = [{ name = "Dag Brattli", email = "[email protected]" }]
77
license = "MIT"
8+
requires-python = ">=3.11"
9+
dependencies = [
10+
"fable-library>=0.8.0",
11+
#"fable-python",
12+
#"fsharp-control-async-rx",
13+
]
814

9-
[tool.poetry.dependencies]
10-
python = "^3.11"
11-
fable-library = ">=0.8.0"
12-
#fable-python = "*"
13-
#fsharp-control-async-rx = "*"
14-
15-
[tool.poetry.dev-dependencies]
16-
#fable-python = {path = "./fable_modules/fable-python", develop = true}
17-
#fsharp-control-async-rx = {path = "./fable_modules/fsharp-control-async-rx", develop = true}
18-
19-
[tool.poetry.group.dev.dependencies]
20-
black = "^24.3.0"
21-
22-
[build-system]
23-
requires = ["poetry-core>=1.0.0"]
24-
build-backend = "poetry.core.masonry.api"
15+
[dependency-groups]
16+
dev = [
17+
"black>=24.3.0",
18+
#"fable-python",
19+
#"fsharp-control-async-rx",
20+
]

0 commit comments

Comments
 (0)