Skip to content

Commit 1d1c7c4

Browse files
committed
Update Python to 3.9
1 parent 289f7bd commit 1d1c7c4

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.verchew.ini

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ version = 2
1111
[Python]
1212

1313
cli = python
14-
version = 3.7
14+
version = 3.9
1515

1616
[Pipenv]
1717

1818
cli = pipenv
19-
version = 2020
19+
version = 2021
2020

2121
[Poetry]
2222

@@ -33,7 +33,7 @@ version = 2
3333

3434
cli = java
3535
cli_version_arg = -version
36-
version = 2020
36+
version = 2021
3737

3838
[Leiningen]
3939

@@ -53,9 +53,9 @@ version = 6
5353
[Firefox]
5454

5555
cli = firefox
56-
version = 84
56+
version = 89
5757

5858
[geckodriver]
5959

6060
cli = geckodriver
61-
version = 0.28
61+
version = 0.29

Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM circleci/python:3.7.9-node-browsers
1+
FROM circleci/python:3.9-node-browsers
22

33
# Leiningen
44

@@ -9,15 +9,15 @@ lein --version
99

1010
# Firefox
1111

12-
RUN sudo wget https://ftp.mozilla.org/pub/firefox/releases/84.0/linux-x86_64/en-US/firefox-84.0.tar.bz2 && \
13-
sudo tar -xjf firefox-84.0.tar.bz2 && \
12+
RUN sudo wget https://ftp.mozilla.org/pub/firefox/releases/89.0/linux-x86_64/en-US/firefox-89.0.tar.bz2 && \
13+
sudo tar -xjf firefox-89.0.tar.bz2 && \
1414
sudo rm -rf /opt/firefox* && \
15-
sudo rm firefox-84.0.tar.bz2 && \
15+
sudo rm firefox-89.0.tar.bz2 && \
1616
sudo mv firefox /opt/firefox70 && \
1717
sudo ln -sf /opt/firefox70/firefox-bin /usr/bin/firefox && \
1818
firefox --version
1919

20-
RUN curl -L https://github.com/mozilla/geckodriver/releases/download/v0.28.0/geckodriver-v0.28.0-linux64.tar.gz \
20+
RUN curl -L https://github.com/mozilla/geckodriver/releases/download/v0.29.1/geckodriver-v0.29.1-linux64.tar.gz \
2121
| sudo tar xz -C /usr/local/bin && \
2222
geckodriver --version
2323

0 commit comments

Comments
 (0)