Skip to content

Commit

Permalink
build($pipenv): upgrade dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
johnnymillergh committed Apr 19, 2023
1 parent fa386d3 commit dbc246f
Show file tree
Hide file tree
Showing 2 changed files with 143 additions and 145 deletions.
18 changes: 9 additions & 9 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ python_version = "3.11"
[packages]
# Foundamental dependencies
# Loguru is a library which aims to bring enjoyable logging in Python. https://pypi.org/project/loguru/
loguru = "==0.6.0"
loguru = "==0.7.0"
# pyhocon is a HOCON parser for Python. Additionally we provide a tool (pyhocon) to convert any HOCON content into json,
# yaml and properties format. https://pypi.org/project/pyhocon/
pyhocon = "==0.3.60"
Expand All @@ -19,20 +19,20 @@ pyhocon = "==0.3.60"
numpy = "==1.24.2"
# pandas is a Python package that provides fast, flexible, and expressive data structures designed to make working
# with "relational" or "labeled" data both easy and intuitive. https://pypi.org/project/pandas/
pandas = "==1.5.3"
pandas = "==2.0.0"
# Python enhancement dependencies
# Arrow is a Python library that offers a sensible and human-friendly approach to creating, manipulating,
# formatting and converting dates, times and timestamps. https://pypi.org/project/arrow/
arrow = "==1.2.3"
# ORM dependencies
# Peewee is a simple and small ORM. https://pypi.org/project/peewee/
peewee = "==3.16.0"
peewee = "==3.16.1"
# Template engine dependencies
# Jinja is a fast, expressive, extensible templating engine. https://pypi.org/project/Jinja2/
jinja2 = "==3.1.2"
# Tool dependencies
# Faker is a Python package that generates fake data for you. https://pypi.org/project/Faker/
faker = "==18.3.0"
faker = "==18.4.0"
# A Python module to parse, validate and reformat standard numbers and codes in different formats.
# It contains a large collection of number formats. https://pypi.org/project/python-stdnum/
python-stdnum = "==1.18"
Expand All @@ -48,7 +48,7 @@ psutil = "==5.9.4"
[dev-packages]
# Black is the uncompromising Python code formatter. By using it, you agree to cede control over minutiae of
# hand-formatting. https://pypi.org/project/black/
black = "==23.1.0"
black = "==23.3.0"
# Naming Convention checker for Python. https://github.com/PyCQA/pep8-naming
pep8-naming = "==0.13.3"
# Linting & toolkit for checking your code base against coding style (PEP8). https://pypi.org/project/flake8/
Expand All @@ -57,16 +57,16 @@ flake8 = "==6.0.0"
flake8-quotes = "==3.3.2"
flake8-print = "==5.0.0"
flake8-use-fstring = "==1.4"
flake8-comprehensions = "==3.11.1"
flake8-comprehensions = "==3.12.0"
# isort your imports, so you don't have to. https://pypi.org/project/isort/
isort = "==5.12.0"
# Add type annotations to your Python programs, and use mypy to type check them. https://pypi.org/project/mypy/
mypy = "==1.1.1"
mypy = "==1.2.0"
# A framework for managing and maintaining multi-language pre-commit hooks. https://pypi.org/project/pre-commit/
pre-commit = "==3.2.0"
pre-commit = "==3.2.2"
# The pytest framework makes it easy to write small tests, yet scales to support complex functional testing
# for applications and libraries. https://pypi.org/project/pytest/
pytest = "==7.2.2"
pytest = "==7.3.1"
# Thin-wrapper around the mock package for easier use with pytest. https://pypi.org/project/pytest-mock/
pytest-mock = "==3.10.0"
# This plugin produces coverage reports. https://pypi.org/project/pytest-cov/
Expand Down
Loading

0 comments on commit dbc246f

Please sign in to comment.