From 86935e81eab1102493dc921f4a9ca52f7e58fc04 Mon Sep 17 00:00:00 2001
From: Lorenzo Bertoni <34957815+bertoni9@users.noreply.github.com>
Date: Tue, 26 Nov 2019 18:30:21 +0100
Subject: [PATCH] Set pifpaf and nuscenes versions for pip installation (#14)
* fix version of pifpaf and nuscenes
* set version of all dependancies
* add iccv version
* fix readme
* fix readme and tabulate version
* fix pylint and pytest version
* update to pifpaf 0.9
* fix pylint and pytorch versions
* fix pifpaf=0.8
* fix pytorch version
* make new version
* fix bug on commas
* change to torch 1.1
* change pylint version
---
README.md | 4 +++-
monoloco/__init__.py | 2 +-
setup.py | 12 +++++++-----
3 files changed, 11 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md
index aa67743..d5971d2 100644
--- a/README.md
+++ b/README.md
@@ -11,11 +11,13 @@ month = {October},
year = {2019}
}
```
-* **Paper on [ArXiv](https://arxiv.org/abs/1906.06059)**
+* **Paper on [ICCV'19](http://openaccess.thecvf.com/content_ICCV_2019/html/Bertoni_MonoLoco_Monocular_3D_Pedestrian_Localization_and_Uncertainty_Estimation_ICCV_2019_paper.html) website or [ArXiv](https://arxiv.org/abs/1906.06059)**
* **Check our video with method description and qualitative results on [YouTube](https://www.youtube.com/watch?v=ii0fqerQrec)**
* **Live demo available! (more info in the webcam section)**
+* **Continuously tested with Travis CI: [](https://travis-ci.org/vita-epfl/monoloco)
**
+
# Setup
diff --git a/monoloco/__init__.py b/monoloco/__init__.py
index fa8a434..a00f9dd 100644
--- a/monoloco/__init__.py
+++ b/monoloco/__init__.py
@@ -1,4 +1,4 @@
"""Open implementation of MonoLoco."""
-__version__ = '0.4.6'
+__version__ = '0.4.7'
diff --git a/setup.py b/setup.py
index c2b72b0..32b3afd 100644
--- a/setup.py
+++ b/setup.py
@@ -27,16 +27,18 @@ setup(
zip_safe=False,
install_requires=[
- 'openpifpaf',
- 'tabulate', # For evaluation
+ 'torch==1.1.0',
+ 'torchvision==0.3.0',
+ 'openpifpaf==0.8.0',
+ 'tabulate==0.8.3', # For evaluation
],
extras_require={
'test': [
- 'pylint',
- 'pytest',
+ 'pylint==2.4.2',
+ 'pytest==4.6.3',
],
'prep': [
- 'nuscenes-devkit',
+ 'nuscenes-devkit==1.0.2',
],
},
)