Skip to content

Commit

Permalink
chore(pyproject.toml): update project version and dependencies
Browse files Browse the repository at this point in the history
The project version has been updated from 0.1.5 to 0.1.7 to reflect the new changes and improvements. The 'coverage' dependency version has been updated from 7.5.1 to 7.5.3 to use the latest features and bug fixes. The 'poetry-plugin-export' has been moved to dev dependencies and its version has been updated from 1.7.1 to 1.8.0 as it is only required during development. A new attribute 'package-mode' has been added and set to false to disable the creation of .dist-info directory inside the package.
  • Loading branch information
mauvehed committed May 28, 2024
1 parent 40c8474 commit 61efdc6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion poetry.lock

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

7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
[tool.poetry]
name = "yourip"
version = "0.1.5"
version = "0.1.7"
description = "A simple web site to return yourIP"
authors = ["mauvehed <[email protected]>"]
license = "MIT"
package-mode = false

readme = "README.md"

Expand All @@ -15,12 +16,12 @@ python = "^3.10"
Flask = "3.0.3"
gunicorn = "^22.0.0"
markupsafe = "^2.1.5"
poetry-plugin-export = "^1.7.1"

[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
coverage = "^7.5.1"
coverage = "^7.5.3"
mypy = "^1.10.0"
poetry-plugin-export = "^1.8.0"

[build-system]
requires = ["poetry-core>=1.0.0"]
Expand Down

0 comments on commit 61efdc6

Please sign in to comment.