Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python 3.9, 3.10 and 3.11 and drop 3.7 support #1115

Merged
merged 2 commits into from
Aug 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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']
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']
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