Skip to content

Commit 09b437f

Browse files
authored
Merge branch 'master' into pagination-fix
2 parents a2babb2 + 1785d23 commit 09b437f

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/CONTRIBUTING.md

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,23 @@ git clone https://github.com/amadeus4dev/amadeus-python.git
66
cd amadeus-python
77
```
88

9-
First, ensure you have a version of every Python we support installed. Your versions may differ.
9+
First, make sure your pyenv is initialized for each environment (`pyenv init `).
10+
If you want to have it loaded automatically, add the following to ~/.zshrc:
11+
12+
```sh
13+
eval "$(pyenv init -)"
14+
```
15+
16+
Second, ensure you have a version of every Python we support installed. Your versions may differ.
1017

1118
```sh
1219
pyenv install 2.7.14
1320
pyenv install 3.3.7
14-
pyenv install ...
15-
pyenv global 3.6.3 3.5.4 3.4.7 3.3.7 2.7.14
21+
pyenv install 3.4.9
22+
pyenv install 3.5.6
23+
pyenv install 3.6.3
24+
pyenv install 3.6.8
25+
pyenv global 3.6.8 3.6.3 3.5.6 3.4.9 3.3.7 2.7.14
1626
```
1727

1828
Next ensure you create a virtual environment.

0 commit comments

Comments
 (0)