Skip to content

Commit

Permalink
Fixing poetry and ruff settings about newest versions of them (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcieltorres authored Feb 16, 2025
1 parent ff56fa5 commit cd946bd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ COPY pyproject.toml .
RUN pip install poetry

FROM base AS dependencies
RUN poetry install --no-dev
RUN poetry install --without dev

FROM base AS development
RUN poetry install
Expand Down
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: "3.4"
services:
safe-chat-slack-bot:
tty: true
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,17 @@ version = "0.1.0"
description = "SafeChat Slack Bot is an open-source project designed to enhance data security within Slack workspaces"
authors = ["Marciel Torres <[email protected]>"]
license = "MIT"
package-mode = false

[tool.poetry.dependencies]
python = "^3.11"
slack-bolt = "1.22.0"
aiohttp = "3.11.11"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "^8.0.0"
pytest-cov = "^6.0.0"
ruff = "^0.8.1"
ruff = "^0.9.6"

[tool.pytest.ini_options]
testpaths = ["tests",]
Expand Down

0 comments on commit cd946bd

Please sign in to comment.