Skip to content

Update to theta-003 #71

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 12, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .config/dotnet-tools.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
]
},
"fable": {
"version": "4.0.0-snake-island-alpha-025",
"version": "4.0.0-theta-003",
"commands": [
"fable"
]
Expand Down
2 changes: 1 addition & 1 deletion .fantomasignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ Helpers.fs
Util.fs

# Ignore script files
*.fsx
*.fsx
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ how to deal with Python version handling.
Prerequisite for compiling F# to Python using Fable:

```sh
> dotnet tool install --global fable --version 4.0.0-snake-island-alpha-019
> dotnet add package Fable.Core --version 4.0.0-snake-island-alpha-007
> dotnet tool install --global fable --version 4.0.0-theta-003
> dotnet add package Fable.Core --version 4.0.0-theta-001
```

To use the `Fable.Python` library in your Fable project:
Expand Down Expand Up @@ -70,9 +70,12 @@ It contains example code for using Fable Python with:

## Libraries that uses or works with Fable Python

- [Femoto](https://github.com/Zaid-Ajaj/Femto)
- [AsyncRx](https://github.com/dbrattli/AsyncRx)
- [Fable.Sedlex](https://github.com/thautwarm/Fable.Sedlex)
- [Fable.Giraffe](https://github.com/dbrattli/Fable.Giraffe)
- [Fable.Requests](https://github.com/Zaid-Ajaj/Fable.Requests)
- [Fable.SimpleJson.Python](https://github.com/Zaid-Ajaj/Fable.SimpleJson.Python)
- [Fable.Sedlex](https://github.com/thautwarm/Fable.Sedlex)
- [Feliz.ViewEngine](https://github.com/dbrattli/Feliz.ViewEngine)
- [TypedCssClasses](https://github.com/zanaptak/TypedCssClasses)
- [Typed-BNF](https://github.com/thautwarm/Typed-BNF#readme)
Expand Down
6 changes: 3 additions & 3 deletions examples/timeflies/TimeFlies.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Fable.Python" Version="0.17.0" />
<PackageReference Include="Fable.Core" Version="4.0.0-snake-island-alpha-007" />
<PackageReference Include="FSharp.Control.AsyncRx" Version="1.6.2" />
<PackageReference Include="Fable.Python" Version="0.22.0" />
<PackageReference Include="Fable.Core" Version="4.0.0-theta-001" />
<PackageReference Include="FSharp.Control.AsyncRx" Version="1.6.3" />
</ItemGroup>
</Project>
4 changes: 2 additions & 2 deletions paket.dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ storage: none
framework: net6.0, netstandard2.0, netstandard2.1

nuget FSharp.Core >= 4.7.2
nuget Fable.Core >= 4.0.0-snake-island-alpha-007
nuget Fable.Core ~> 4.0.0 prerelease

group Test
source https://api.nuget.org/v3/index.json
storage: none
framework: net6.0

nuget FSharp.Core
nuget Fable.Core >= 4.0.0-snake-island-alpha-007
nuget Fable.Core ~> 4.0.0 prerelease
nuget Microsoft.NET.Test.Sdk ~> 16
nuget XUnit ~> 2
nuget xunit.runner.visualstudio ~> 2
Expand Down