Skip to content

Commit

Permalink
feat: add python 3.10 compatability
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Oct 26, 2023
1 parent ce50909 commit 9f1ba34
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.11-bullseye
FROM python:3.10-bullseye

# Set the working directory to /app
WORKDIR /app
Expand Down
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ name = "functionalpy"
version = "0.5.0"
authors = [{ name = "Martin Bernstorff", email = "martinbernstorff@gmail.com" }]
description = "functionalpy"
classifiers = ["Programming Language :: Python :: 3.11"]
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]
requires-python = ">=3.10"
[project.license]

file = "LICENSE"
Expand Down

0 comments on commit 9f1ba34

Please sign in to comment.