Skip to content

Commit

Permalink
wip: add dependency version
Browse files Browse the repository at this point in the history
  • Loading branch information
skim0119 committed Dec 27, 2021
1 parent 1fd6ea8 commit 1937e9f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ We use [flake8](https://pypi.org/project/flake8/) and [Black](https://pypi.org/p

You can install flake8 using pip :

`pip install flake8`
`pip install flake8==3.8.3`

You can install black using pip:

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
black:
@black --version
@black elastica tests
@black --required-version 21.12b0 elastica tests


black_check:
Expand Down
File renamed without changes.
10 changes: 6 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
numpy
scipy
matplotlib
tqdm
numpy>=1.19.2
scipy>=1.5.2
matplotlib>=3.3.2
tqdm>=4.61.1
numba==0.51.0
flake8==3.8.3
black==21.12b0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
VERSION = "0.1.0.post5"

# What packages are required for this module to be executed?
REQUIRED = ["numpy", "matplotlib", "scipy", "tqdm", "numba"]
REQUIRED = ["numpy>=1.19.2", "matplotlib>=3.3.2", "scipy>=1.5.2", "tqdm>=4.61.1", "numba==0.51.0"]

# What packages are optional?
EXTRAS = {
Expand Down

0 comments on commit 1937e9f

Please sign in to comment.