Skip to content

Commit

Permalink
Remove support for Python 3.9 (#96)
Browse files Browse the repository at this point in the history
* Remove support for Python 3.9

* Update Readme

* Update fable
  • Loading branch information
dbrattli committed Oct 19, 2023
1 parent 5735a63 commit c8145d7
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 49 deletions.
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.2.2",
"version": "4.3.0",
"commands": [
"fable"
]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.9'
python-version: '3.10'

- name: Setup .NET Core
uses: actions/setup-dotnet@v1
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ and many more. Some bindings have already been added:

## Version

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

## Installation

Expand Down
76 changes: 35 additions & 41 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[tool.poetry]
name = "Fable Python"
version = "4.0.0"
version = "4.3.0"
description = "Fable"
authors = ["Dag Brattli <[email protected]>"]
license = "MIT License"
readme = "README.md"
homepage = "https://fable.io"

[tool.poetry.dependencies]
python = ">= 3.9, < 4.0"
python = ">= 3.10, < 4.0"

[tool.poetry.dev-dependencies]
pytest = "^6.2.4"
Expand Down
2 changes: 1 addition & 1 deletion src/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = ["Dag Brattli <[email protected]>"]
license = "MIT"

[tool.poetry.dependencies]
python = ">= 3.9, < 4.0"
python = ">= 3.10, < 4.0"
fable-library = ">=0.8.0"

[tool.poetry.dev-dependencies]
Expand Down

0 comments on commit c8145d7

Please sign in to comment.