Skip to content

Commit 43dc9a8

Browse files
authored
chore(ci): build using python 3.8 (#111)
Avoid python version mismatch that pulls incompatible dependencies in github actions when running unittests. Signed-off-by: Antoine Bartuccio <[email protected]>
1 parent 8a61788 commit 43dc9a8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Set up Python 3
3131
uses: actions/setup-python@v4
3232
with:
33-
python-version: '3.x'
33+
python-version: '3.8' # This version is the closest available to the one currently used in production (3.6).
3434

3535
- name: Install dependencies
3636
run: |

dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
coverage<7.11
1+
coverage
22
astroid
33
pylint
44
bitarray

0 commit comments

Comments
 (0)