Skip to content

Commit

Permalink
fix poetry deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
kylehoehns committed Feb 6, 2025
1 parent 241da4f commit 0529a95
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 6 deletions.
2 changes: 1 addition & 1 deletion python/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Python Project

## Tech Stack
- python 3.10
- python 3.12
- pytest
- pylint
- mypy
Expand Down
33 changes: 30 additions & 3 deletions python/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ authors = ["Jake Williamson"]
[tool.poetry.dependencies]
python = "^3.10.8"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest = "8.3.2"
pylint = "3.3.1"
coverage = "7.6.1"
Expand Down
2 changes: 1 addition & 1 deletion python/tests/test_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ def test_get_bar_should_return_bar():


def test_get_baz_should_return_baz():
assert get_baz() == "baz"
assert get_baz() == "baz"

0 comments on commit 0529a95

Please sign in to comment.