Skip to content

Commit b177c69

Browse files
Fixing some configs about ruff 0.9.6 version (#66)
1 parent 84f6400 commit b177c69

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Dockerfile

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

88
FROM base AS dependencies
9-
RUN poetry install --no-dev
9+
RUN poetry install --without dev
1010

1111
FROM base AS development
1212
RUN poetry install

docker-compose.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: "3.4"
21
services:
32
python-boilerplate-project:
43
tty: true
@@ -9,4 +8,4 @@ services:
98
target: "development"
109
volumes:
1110
- ".:/src"
12-
env_file: .env
11+
env_file: .env

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ version = "0.1.0"
44
description = "A python boilerplate project using poetry"
55
authors = ["Authors Name <authorsmail@>"]
66
license = "MIT"
7+
package-mode = false
78

89
[tool.poetry.dependencies]
910
python = "^3.11"
1011

11-
[tool.poetry.dev-dependencies]
12+
[tool.poetry.group.dev.dependencies]
1213
pytest = "^8.0.0"
1314
pytest-cov = "^6.0.0"
14-
ruff = "^0.8.1"
15+
ruff = "^0.9.6"
1516

1617
[tool.pytest.ini_options]
1718
testpaths = ["tests",]

0 commit comments

Comments
 (0)