Skip to content

Commit c8145d7

Browse files
authored
Remove support for Python 3.9 (#96)
* Remove support for Python 3.9 * Update Readme * Update fable
1 parent 5735a63 commit c8145d7

File tree

6 files changed

+43
-49
lines changed

6 files changed

+43
-49
lines changed

.config/dotnet-tools.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
]
1010
},
1111
"fable": {
12-
"version": "4.2.2",
12+
"version": "4.3.0",
1313
"commands": [
1414
"fable"
1515
]

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v2
1515
- uses: actions/setup-python@v4
1616
with:
17-
python-version: '3.9'
17+
python-version: '3.10'
1818

1919
- name: Setup .NET Core
2020
uses: actions/setup-dotnet@v1

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ and many more. Some bindings have already been added:
2020

2121
## Version
2222

23-
This library currently targets Python 3.9. Types bindings for other
24-
versions of Python should not be added to this library until we decide
25-
how to deal with Python version handling.
23+
This library currently targets Python 3.10 or greater. Types bindings
24+
for other versions of Python should not be added to this library until
25+
we decide how to deal with Python version handling.
2626

2727
## Installation
2828

poetry.lock

+35-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[tool.poetry]
22
name = "Fable Python"
3-
version = "4.0.0"
3+
version = "4.3.0"
44
description = "Fable"
55
authors = ["Dag Brattli <[email protected]>"]
66
license = "MIT License"
77
readme = "README.md"
88
homepage = "https://fable.io"
99

1010
[tool.poetry.dependencies]
11-
python = ">= 3.9, < 4.0"
11+
python = ">= 3.10, < 4.0"
1212

1313
[tool.poetry.dev-dependencies]
1414
pytest = "^6.2.4"

src/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ authors = ["Dag Brattli <[email protected]>"]
77
license = "MIT"
88

99
[tool.poetry.dependencies]
10-
python = ">= 3.9, < 4.0"
10+
python = ">= 3.10, < 4.0"
1111
fable-library = ">=0.8.0"
1212

1313
[tool.poetry.dev-dependencies]

0 commit comments

Comments
 (0)