Skip to content

Commit

Permalink
github: drop python 3.7 from github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
max-moser committed Aug 31, 2023
1 parent d2667c0 commit fad7d1d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 14 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
13 changes: 1 addition & 12 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,11 @@ jobs:
runs-on: ubuntu-20.04
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9]
requirements-level: [pypi]
db-service: [postgresql10,postgresql13]
search-service: [opensearch2,elasticsearch7]
exclude:
- python-version: 3.7
db-service: postgresql13
search-service: opensearch2

- python-version: 3.7
db-service: postgresql13
search-service: elasticsearch7

- python-version: 3.8
db-service: postgresql10
search-service: opensearch2
Expand All @@ -58,9 +50,6 @@ jobs:
db-service: postgresql10
search-service: elasticsearch7
include:
- db-service: postgresql10
DB_EXTRAS: "postgresql"

- db-service: postgresql13
DB_EXTRAS: "postgresql"

Expand Down

0 comments on commit fad7d1d

Please sign in to comment.