Skip to content

Commit 47de923

Browse files
committed
Update python versions in run-tests script (closes #256)
1 parent 858b1c1 commit 47de923

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Assuming pyenv_ is installed
6767

6868
host$ git clone [email protected]:snowplow/snowplow-python-tracker.git
6969
host$ cd snowplow-python-tracker
70-
host$ pyenv install 2.7.18 && pyenv install 3.5.10 && pyenv install 3.6.13 && pyenv install 3.7.10 && pyenv install 3.8.9 && pyenv install 3.9.2
70+
host$ pyenv install 2.7.18 && pyenv install 3.5.10 && pyenv install 3.6.14 && pyenv install 3.7.11 && pyenv install 3.8.11 && pyenv install 3.9.6
7171
host$ ./run-tests.sh deploy
7272
host$ ./run-tests.sh test
7373

run-tests.sh

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ eval "$(pyenv init -)"
1515
eval "$(pyenv virtualenv-init -)"
1616

1717
function deploy {
18-
# pyenv install 2.7.15
18+
# pyenv install 2.7.18
1919
if [ ! -e ~/.pyenv/versions/tracker27 ]; then
2020
pyenv virtualenv 2.7.18 tracker27
2121
pyenv activate tracker27
@@ -49,68 +49,68 @@ function deploy {
4949
source deactivate
5050
fi
5151

52-
# pyenv install 3.6.12
52+
# pyenv install 3.6.14
5353
if [ ! -e ~/.pyenv/versions/tracker36 ]; then
54-
pyenv virtualenv 3.6.12 tracker36
54+
pyenv virtualenv 3.6.14 tracker36
5555
pyenv activate tracker36
5656
pip install .
5757
pip install -r requirements-test.txt
5858
source deactivate
5959
fi
6060

6161
if [ ! -e ~/.pyenv/versions/tracker36redis ]; then
62-
pyenv virtualenv 3.6.12 tracker36redis
62+
pyenv virtualenv 3.6.14 tracker36redis
6363
pyenv activate tracker36redis
6464
pip install .[redis]
6565
pip install -r requirements-test.txt
6666
source deactivate
6767
fi
6868

69-
# pyenv install 3.7.9
69+
# pyenv install 3.7.11
7070
if [ ! -e ~/.pyenv/versions/tracker37 ]; then
71-
pyenv virtualenv 3.7.9 tracker37
71+
pyenv virtualenv 3.7.11 tracker37
7272
pyenv activate tracker37
7373
pip install .
7474
pip install -r requirements-test.txt
7575
source deactivate
7676
fi
7777

7878
if [ ! -e ~/.pyenv/versions/tracker37redis ]; then
79-
pyenv virtualenv 3.7.9 tracker37redis
79+
pyenv virtualenv 3.7.11 tracker37redis
8080
pyenv activate tracker37redis
8181
pip install .[redis]
8282
pip install -r requirements-test.txt
8383
source deactivate
8484
fi
8585

86-
# pyenv install 3.8.6
86+
# pyenv install 3.8.11
8787
if [ ! -e ~/.pyenv/versions/tracker38 ]; then
88-
pyenv virtualenv 3.8.6 tracker38
88+
pyenv virtualenv 3.8.11 tracker38
8989
pyenv activate tracker38
9090
pip install .
9191
pip install -r requirements-test.txt
9292
source deactivate
9393
fi
9494

9595
if [ ! -e ~/.pyenv/versions/tracker38redis ]; then
96-
pyenv virtualenv 3.8.6 tracker38redis
96+
pyenv virtualenv 3.8.11 tracker38redis
9797
pyenv activate tracker38redis
9898
pip install .[redis]
9999
pip install -r requirements-test.txt
100100
source deactivate
101101
fi
102102

103-
# pyenv install 3.9.0
103+
# pyenv install 3.9.6
104104
if [ ! -e ~/.pyenv/versions/tracker39 ]; then
105-
pyenv virtualenv 3.9.0 tracker39
105+
pyenv virtualenv 3.9.6 tracker39
106106
pyenv activate tracker39
107107
pip install .
108108
pip install -r requirements-test.txt
109109
source deactivate
110110
fi
111111

112112
if [ ! -e ~/.pyenv/versions/tracker39redis ]; then
113-
pyenv virtualenv 3.9.0 tracker39redis
113+
pyenv virtualenv 3.9.6 tracker39redis
114114
pyenv activate tracker39redis
115115
pip install .[redis]
116116
pip install -r requirements-test.txt

0 commit comments

Comments
 (0)