Skip to content

Commit

Permalink
Add Python 3.9, 3.10 and 3.11 and drop 3.7 support
Browse files Browse the repository at this point in the history
Python 3.7 reached the end-of-life phase on 2023-06-27
and is no longer supported.

Signed-off-by: Eva Millán <[email protected]>
  • Loading branch information
evamillan committed Aug 23, 2023
1 parent 2ae962a commit b077f5c
Show file tree
Hide file tree
Showing 5 changed files with 134 additions and 175 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
name: Python ${{ matrix.python-version }} for ES ${{ matrix.elasticsearch-version }}
strategy:
matrix:
python-version: [ 3.7, 3.8 ]
python-version: ['3.8', '3.9', '3.10', '3.11']
elasticsearch-version: [ 6.8.6, 7.2.0 ]
steps:
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # 3.1.0
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: Python ${{ matrix.python-version }} for ES ${{ matrix.elasticsearch-version }}
strategy:
matrix:
python-version: [3.7, 3.8]
python-version: ['3.8', '3.9', '3.10', '3.11']
elasticsearch-version: [6.8.6, 7.2.0]

steps:
Expand All @@ -56,7 +56,6 @@ jobs:
- name: Install dependencies
run: |
poetry install -vvv
poetry add -D coveralls
poetry run pip install -r requirements_dev.txt
- name: Verify Elasticsearch connection
run: |
Expand Down Expand Up @@ -89,4 +88,5 @@ jobs:
run: |
cd tests
poetry run coverage run --source=grimoire_elk run_tests.py
poetry run coveralls --service=github
- name: Coveralls
uses: coverallsapp/github-action@f350da2c033043742f89e8c0b7b5145a1616da6d # v2.1.2
Loading

0 comments on commit b077f5c

Please sign in to comment.