Skip to content

Commit 3bdedd2

Browse files
authored
Fix pyproject versions (#63)
* Fix pyproject versions
1 parent b511351 commit 3bdedd2

File tree

8 files changed

+27
-43
lines changed

8 files changed

+27
-43
lines changed

.config/dotnet-tools.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
]
1616
},
1717
"fable": {
18-
"version": "4.0.0-snake-island-alpha-014",
18+
"version": "4.0.0-snake-island-alpha-019",
1919
"commands": [
2020
"fable"
2121
]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ how to deal with Python version handling.
3030
Prerequisite for compiling F# to Python using Fable:
3131

3232
```sh
33-
> dotnet tool install --global fable --version 4.0.0-snake-island-alpha-014
33+
> dotnet tool install --global fable --version 4.0.0-snake-island-alpha-019
3434
> dotnet add package Fable.Core --version 4.0.0-snake-island-alpha-007
3535
```
3636

examples/timeflies/poetry.lock

Lines changed: 10 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

examples/timeflies/pyproject.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,11 @@ license = "MIT"
88

99
[tool.poetry.dependencies]
1010
python = "^3.9"
11-
fable-library = ""
11+
fable-library = ">=0.8.0"
1212
fable-python = ""
1313
fsharp-control-async-rx = ""
1414

1515
[tool.poetry.dev-dependencies]
16-
fable-library = {path = "./fable_modules/fable-library", develop = true}
1716
fable-python = {path = "./fable_modules/fable-python", develop = true}
1817
fsharp-control-async-rx = {path = "./fable_modules/fsharp-control-async-rx", develop = true}
1918

poetry.lock

Lines changed: 12 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,8 @@ homepage = "https://fable.io"
99

1010
[tool.poetry.dependencies]
1111
python = ">= 3.9, < 4.0"
12-
fable-library = ""
1312

1413
[tool.poetry.dev-dependencies]
15-
fable-library = {path = "./build/fable_modules/fable-library", develop = true}
1614
pytest = "^6.2.4"
1715

1816
[tool.pyright]

src/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "MIT"
88

99
[tool.poetry.dependencies]
1010
python = ">= 3.9, < 4.0"
11-
fable-library = "^0.8.0"
11+
fable-library = ">=0.8.0"
1212

1313
[tool.poetry.dev-dependencies]
1414

test/TestBuiltins.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ let ``test __name__ works`` () = __name__ |> equal "test_builtins"
1313
[<Fact>]
1414
let ``test write works`` () =
1515
let result = builtins.``open``("test.txt", OpenTextMode.Write)
16-
result.write "ABC" |> equal 3
16+
result.write "ABC" |> equal 3

0 commit comments

Comments
 (0)