Skip to content

Commit

Permalink
chore: upgrade dev dependencies
Browse files Browse the repository at this point in the history
Upgrade the development dependencies. For each dependency, the latest version
is used as lower-bound of the version specifier set; as upper-bound, the
same version number but with the minor number increased by one and patch number set to 0.
  • Loading branch information
marcofavorito committed May 12, 2023
1 parent 87bfb92 commit 5bd8568
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 139 deletions.
37 changes: 20 additions & 17 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,26 +3,29 @@ name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[packages]

[dev-packages]
pytest = ">=7.2.0,<7.3.0"
pytest = ">=7.3.1<7.4.0"
pytest-cov = ">=4.0.0,<4.1.0"
pytest-randomly = ">=3.12.0,<3.13.0"
pytest-lazy-fixture = ">=0.6.3 ,<0.7.0"
tox = "*"
ipython = "*"
codecov = "*"
tox-travis = "*"
black = ">=22.10.0,<22.11.0"
mypy = ">=0.910,<0.911"
flake8 = ">=4.0.1,<4.1.0"
flake8-docstrings = ">=1.6.0,<1.7.0"
mkdocs = "*"
markdown-include = "*"
isort = ">=5.10.1,<5.11.0"
mistune = "==2.0.0a4"
mkdocs-material = "*"
types-click = "*"
vulture = ">=2.3,<2.4"
pytest-lazy-fixture = "<0.7.0,>=0.6.3"
tox = "<4.6.0,>=4.5.1"
ipython = ">=8.13.2,<8.14.0"
codecov = ">=2.1.13,<2.2.0"
black = "<23.4.0,>=23.3.0"
mypy = ">=1.3.0,<1.4.0"
flake8 = ">=6.0.0,<6.1.0"
flake8-docstrings = "<1.8.0,>=1.7.0"
mkdocs = ">=1.4.3,<1.5.0"
markdown-include = ">=0.8.1,<0.9.0"
isort = "<5.13.0,>=5.12.0"
mistune = "<2.1.0,>=2.0.5"
mkdocs-material = ">=9.1.12,<9.2.0"
types-click = ">=7.1.8,<7.2.0"
vulture = "<2.8,>=2.7"
flake8-bugbear = "<23.6.0,>=23.5.9"
pymdown-extensions = "<9.12,>=9.11"

[requires]
python_version = "3.10"
Loading

0 comments on commit 5bd8568

Please sign in to comment.