Skip to content

Commit

Permalink
Upgrade some dev dependencies based on Python version
Browse files Browse the repository at this point in the history
  • Loading branch information
Delgan committed Jan 6, 2023
1 parent dadc4c6 commit 7b49a27
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 0 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,3 @@ updates:
allow:
- dependency-type: direct
labels: []
ignore:
# Old version required for Python 3.5
- dependency-name: freezegun
- dependency-name: colorama
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,8 @@
"dev": [
# Setup.
"pre-commit==2.21.0 ; python_version>='3.7'",
"tox==3.27.1",
"tox==3.27.1 ; python_version<'3.7'",
"tox==4.2.4 ; python_version>='3.7'",
# Testing framework.
"pytest==6.1.2 ; python_version<'3.7'",
"pytest==7.2.0 ; python_version>='3.7'",
Expand All @@ -67,8 +68,10 @@
"pytest-mypy-plugins==1.9.3 ; python_version>='3.6' and python_version<'3.7'",
"pytest-mypy-plugins==1.10.1 ; python_version>='3.7'",
# Testing utils.
"colorama==0.4.5",
"freezegun==1.1.0",
"colorama==0.4.5 ; python_version<'3.7'",
"colorama==0.4.6 ; python_version>='3.7'",
"freezegun==1.1.0 ; python_version<'3.7'",
"freezegun==1.2.2 ; python_version>='3.7'",
# Type checking.
"mypy==v0.910 ; python_version<'3.6'",
"mypy==v0.971 ; python_version>='3.6' and python_version<'3.7'",
Expand Down

0 comments on commit 7b49a27

Please sign in to comment.