Skip to content

Commit 82882e8

Browse files
committed
refactor: update python project
1 parent 4b18509 commit 82882e8

13 files changed

+671
-1
lines changed

Diff for: coding-test-python-practice/.gitignore

+654
Large diffs are not rendered by default.

Diff for: coding-test-python-practice/pyproject.toml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tool.poetry]
2+
name = "coding-test-python-practice"
3+
version = "0.1.0"
4+
description = "Coding test practice for Programmers problems"
5+
authors = ["Jinseong Ha"]
6+
readme = "README.md"
7+
8+
[tool.poetry.dependencies]
9+
python = "^3.11"
10+
pytest = "^7.4.2"
11+
pytest-benchmark = "^4.0.0"
12+
13+
14+
[build-system]
15+
requires = ["poetry-core"]
16+
build-backend = "poetry.core.masonry.api"
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
pytest>=7.2.0
1+
pytest>=7.4.2
22
pytest-benchmark>=4.0.0
File renamed without changes.

0 commit comments

Comments
 (0)