Skip to content

Commit

Permalink
- Changed >= in pyproject toml to ^ as this is best practice.
Browse files Browse the repository at this point in the history
  • Loading branch information
DelboyJay committed Dec 11, 2024
1 parent 352ee0e commit 70b3996
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 87 deletions.
82 changes: 10 additions & 72 deletions poetry.lock

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

29 changes: 14 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,27 +13,26 @@ packages = [
[tool.poetry.dependencies]
python = ">=3.9,<4"
Django = ">=3.2.25"
djangorestframework = ">=3"
django-redis = ">=5.4.0"
redis = ">=5.2.1"
djangorestframework = "^3"
django-redis = "^5.4.0"
redis = "^5.2.1"

# pinned dependant packages for security updates and fixes
certifi = ">=2023.7.22"
cryptography = ">=43.0.0"
requests = ">=2.32.1"
certifi = "^2023.7.22"
cryptography = "^43.0.0"
requests = "^2.32.1"

[tool.poetry.group.dev.dependencies]
bump2version = "*"
codecov = "*"
django-debug-toolbar = "*"
bump2version = "^1.0.1"
codecov = "^2.1.13"
django-debug-toolbar = "^4.4.6"
pre-commit = "^4.0.1"
pytest = "*"
pytest-cov = ">=4.1.0"
pytest-mock = "*"
pytest-django = "*"
pytest = "^8.3.4"
pytest-cov = "^4.1.0"
pytest-mock = "^3.11.1"
pytest-django = "^4.9.0"
tox = "^4.23.2"
twine = "*"
xenon = "*"
twine = "^6.0.1"
virtualenv = "^20.28.0"
ruff = "^0.8.2"

Expand Down

0 comments on commit 70b3996

Please sign in to comment.