Skip to content

Commit

Permalink
removed collections from setup, its already in std library
Browse files Browse the repository at this point in the history
  • Loading branch information
f0uriest committed Jan 5, 2019
1 parent 75e33c5 commit e6a8c10
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion profiling/serial_vs_parallel.py
Expand Up @@ -3,7 +3,7 @@
import numpy as np
import matplotlib.pyplot as plt

a = np.array([100, 500]) # , 1000, 5000, 10000, 50000, 100000])
a = np.array([100, 500, 1000, 5000, 10000, 50000, 100000])
t_serial = np.zeros(shape=a.shape)
t_parallel = np.zeros(shape=a.shape)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -139,7 +139,7 @@
# For an analysis of "install_requires" vs pip's requirements files see:
# https://packaging.python.org/en/latest/requirements.html
install_requires=['numpy', 'matplotlib',
'configobj', 'tqdm', 'colorama','collections'], # Optional
'configobj', 'tqdm', 'colorama'], # Optional

# List additional groups of dependencies here (e.g. development
# dependencies). Users will be able to install these using the "extras"
Expand Down

0 comments on commit e6a8c10

Please sign in to comment.