diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 000000000..26d33521a
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 000000000..105ce2da2
--- /dev/null
+++ b/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/libpythonpro-1.iml b/.idea/libpythonpro-1.iml
new file mode 100644
index 000000000..fbe4a8274
--- /dev/null
+++ b/.idea/libpythonpro-1.iml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 000000000..d56657add
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 000000000..63512f0ed
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 000000000..94a25f7f4
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.travis.yml b/.travis.yml
index 6694375b7..0c91d1121 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,7 +1,9 @@
language: python
python:
- 3.7
+ - 2.7
install:
+ - pip install -r requirements-dev.txt
- pip install -q pipenv codecov
- pipenv sync --dev
script:
diff --git a/README.md b/README.md
index 676c14d7f..b1e0a3f61 100644
--- a/README.md
+++ b/README.md
@@ -11,11 +11,14 @@ Link para o curso [Python Pro](https://www.python.pro.br/)
[](https://pyup.io/repos/github/pythonprobr/libpythonpro/)
[](https://codecov.io/gh/pythonprobr/libpythonpro)
-Suportada versão 3 de Python
+Suportada versão 3 de Pythonex
Para instalar:
```console
+python -m venv .venv
+.venv\Scripts\activate
+pip install -r riquerements-dev.txt
pip install pipenv
pipenv install --dev
```
diff --git a/libpythonpro/github_api.py b/libpythonpro/github_api.py
index 8b0fbafb9..408573758 100644
--- a/libpythonpro/github_api.py
+++ b/libpythonpro/github_api.py
@@ -4,7 +4,6 @@
def buscar_avatar(usuario):
"""
Busca o avatar de um usuário no Github
-
:param usuario: str com o nome de usuário no github
:return: str com o link do avatar
"""