diff --git a/examples/dotnet/README.md b/examples/dotnet/README.md
index ca29f6672d..bd502be9f8 100644
--- a/examples/dotnet/README.md
+++ b/examples/dotnet/README.md
@@ -1,6 +1,6 @@
# .NetCoreApp examples
The following examples showcase how to use OrTools.
-The project solution has examples for both C# and F#.
+The project solution has examples for C#.
We recommend that all projects you create target `net6.0`,
as this allows you to compile for various frameworks and
@@ -16,24 +16,3 @@ You can run the following command:
dotnet build .csproj
dotnet run --no-build --project .csproj
```
-
-## Note on Google.OrTools.FSharp
-This part describes how to use Google.OrTools.FSharp nuget package in F#.
-
-### SolverOptions and lpSolve
-This function and parameter object are a wrapper around the standard Google.OrTools functions.
-It is designed to enter the Linear/Integer program as *matrices* and *vectors*.
-
-Two input formats are allowed:
-* Canonical Form;
-* Standard Form.
-
-**ALL Matrices & Vectors are entered as columns**
-
-### Execution
-Running the examples will involve building them, then running them.
-You can run the following command:
-```shell
-dotnet build .fsproj
-dotnet run --no-build --project .fsproj
-```
diff --git a/examples/python/README.md b/examples/python/README.md
index b916ca28d5..8acef41e29 100644
--- a/examples/python/README.md
+++ b/examples/python/README.md
@@ -1,6 +1,6 @@
# Python examples
The following examples showcase how to use OrTools.
-These examples should work for any Python3.6+.
+These examples should work for any Python3.7+.
We recommend that all projects you create target `Python 3.9`,
as this allows you to keep up-to-date with the latest Python frameworks.