Skip to content

Commit

Permalink
update dev-requirements pins
Browse files Browse the repository at this point in the history
pin 3.6 and then 3.7+
  • Loading branch information
reaperhulk authored and bitprophet committed Jan 9, 2023
1 parent 0779aa1 commit 34ccbb7
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,17 @@
# Invocations for common project tasks
invoke==1.6.0
invocations==2.6.0
pytest==4.4.2
pytest-relaxed==1.1.5
# Pinning has some disadvantages when testing across multiple Python versions
# 3.6 specific pins
pytest==4.4.2;python_version=='3.6'
pytest-relaxed==1.1.5;python_version=='3.6'
# pytest-xdist for test dir watching and the inv guard task
pytest-xdist==1.28.0
pytest-xdist==1.28.0;python_version=='3.6'
# 3.7+ specific
pytest==7.2.0;python_version>='3.7'
pytest-xdist==3.1.0;python_version>='3.7'
pytest-relaxed==2.0.0;python_version>='3.7'

mock==2.0.0
# Linting!
flake8==3.8.3
Expand Down

0 comments on commit 34ccbb7

Please sign in to comment.