Skip to content

Commit

Permalink
Update pytest to 4.3.0 (#300)
Browse files Browse the repository at this point in the history
* Update redis from 3.1.0 to 3.2.0
* Update pytest from 4.2.1 to 4.3.0
* Include updated pytest version with PR #300.
  • Loading branch information
pyup-bot authored and lilchurro committed Feb 19, 2019
1 parent 006e55f commit ba36728
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DeviceClassifier/OneLayer/eval_OneLayer.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def main(self):
abnormality = 0
abnormality = eval_pcap(
str(pcap), self.conf_labels, self.time_const, label=labels[0],
rnn_size=self.rnn_size, model_type='OneLayer')
rnn_size=self.rnn_size, model_path=load_path, model_type='OneLayer')
prev_s = self.common.get_address_info(
source_mac,
timestamp
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
numpy==1.16.1
pika==0.13.0
pytest==4.2.1
pytest==4.3.0
pytest-cov==2.6.1
redis==3.1.0
redis==3.2.0
scikit-learn==0.20.2
tensorflow==1.12.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
packages=['poseidonml'],
package_dir={'poseidonml': 'utils'},
package_data={'poseidonml': ['models/*']},
install_requires=['numpy==1.16.1', 'pika==0.13.0', 'redis==3.1.0',
install_requires=['numpy==1.16.1', 'pika==0.13.0', 'redis==3.2.0',
'scikit-learn==0.20.2', 'tensorflow==1.12.0'],
license='Apache License 2.0',
author='cglewis',
Expand Down

0 comments on commit ba36728

Please sign in to comment.