Skip to content

Commit cd946bd

Browse files
Fixing poetry and ruff settings about newest versions of them (#51)
1 parent ff56fa5 commit cd946bd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ COPY pyproject.toml .
99
RUN pip install poetry
1010

1111
FROM base AS dependencies
12-
RUN poetry install --no-dev
12+
RUN poetry install --without dev
1313

1414
FROM base AS development
1515
RUN poetry install

docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.4"
21
services:
32
safe-chat-slack-bot:
43
tty: true

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,17 @@ version = "0.1.0"
44
description = "SafeChat Slack Bot is an open-source project designed to enhance data security within Slack workspaces"
55
authors = ["Marciel Torres <marcielribeirotorres@gmail.com>"]
66
license = "MIT"
7+
package-mode = false
78

89
[tool.poetry.dependencies]
910
python = "^3.11"
1011
slack-bolt = "1.22.0"
1112
aiohttp = "3.11.11"
1213

13-
[tool.poetry.dev-dependencies]
14+
[tool.poetry.group.dev.dependencies]
1415
pytest = "^8.0.0"
1516
pytest-cov = "^6.0.0"
16-
ruff = "^0.8.1"
17+
ruff = "^0.9.6"
1718

1819
[tool.pytest.ini_options]
1920
testpaths = ["tests",]

0 commit comments

Comments
 (0)