Skip to content

Commit

Permalink
Update Python version to 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
OCopping committed Mar 6, 2024
1 parent bf41c16 commit 6d71fb6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# The devcontainer should use the build target and run as root with podman
# or docker with user namespaces.
#
FROM python:3.10 as build
FROM python:3.11 as build

ARG PIP_OPTIONS=.

Expand All @@ -24,7 +24,7 @@ WORKDIR /context
# install python package into /venv
RUN pip install ${PIP_OPTIONS}

FROM python:3.10-slim as runtime
FROM python:3.11-slim as runtime

# Add apt-get system dependecies for runtime here if needed

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ name = "fastcs"
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
description = "Control system agnostic framework for building Device support in Python that will work for both EPICS and Tango"
Expand All @@ -20,7 +19,7 @@ dependencies = [
dynamic = ["version"]
license.file = "LICENSE"
readme = "README.rst"
requires-python = ">=3.10"
requires-python = ">=3.11"

[project.optional-dependencies]
dev = [
Expand Down

0 comments on commit 6d71fb6

Please sign in to comment.