Skip to content

Commit 2a6c23f

Browse files
committed
Bump version to 0.12.0. Notably, python 3.9 and 3.10 suppoert
1 parent 24bd973 commit 2a6c23f

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

Dockerfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
FROM python:3.9-slim
2+
3+
RUN apt-get update && apt-get install -y git
4+
COPY requirements/requirements.txt /
5+
COPY requirements/requirements-test.txt /
6+
RUN pip install --upgrade pip
7+
RUN pip install -r /requirements.txt -r /requirements-test.txt
8+
9+
RUN mkdir /app
10+
COPY . /app
11+
WORKDIR /app
12+
13+
ENTRYPOINT ["pytest"]
14+

aicodebot/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version = "0.11.1"
1+
version = "0.12.0"

0 commit comments

Comments
 (0)