Skip to content

Commit d33bc29

Browse files
committed
update python versions
1 parent e483617 commit d33bc29

File tree

3 files changed

+32
-14
lines changed

3 files changed

+32
-14
lines changed

.dockerignore

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.github/
2+
docs/
3+
.DS_Store
4+
.gitignore
5+
.project
6+
.pydevproject
7+
CHANGELOG.md
8+
CODE_OF_CONDUCT.md
9+
CONTRIBUTING.md
10+
docker-compose.test.yml
11+
LICENSE
12+
Makefile
13+
PULL_REQUEST_TEMPLATE.md
14+
README.md

.github/workflows/pylint.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ["3.8", "3.9", "3.10"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12"]
1414

1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v4
1717

18-
- name: set up Python ${{ matrix.python-version }}
19-
uses: actions/setup-python@v5
20-
with:
21-
python-version: ${{ matrix.python-version }}
18+
- name: set up Python ${{ matrix.python-version }}
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: ${{ matrix.python-version }}
2222

23-
- name: install dependencies
24-
run: |
25-
python -m pip install --upgrade pip
26-
pip install pylint
23+
- name: install dependencies
24+
run: |
25+
python -m pip install --upgrade pip
26+
pip install pylint
2727
28-
- name: analysing the code with pylint
29-
run: |
30-
# shellcheck disable=SC2046
31-
pylint $(git ls-files '*.py')
28+
- name: analysing the code with pylint
29+
run: |
30+
# shellcheck disable=SC2046
31+
pylint $(git ls-files '*.py')

.project

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<projectDescription>
3+
<name>code-snippets-v4</name>
4+
</projectDescription>

0 commit comments

Comments
 (0)