Skip to content

Commit 4a3f04d

Browse files
committed
CI: change python CI version to 3.9
Minimum version for dependencies is 3.9? Not sure how this was working. Also delete init.yml which was only used to initialize the package.
1 parent 7c22c14 commit 4a3f04d

3 files changed

Lines changed: 6 additions & 58 deletions

File tree

.github/workflows/init.yml

Lines changed: 0 additions & 52 deletions
This file was deleted.

.github/workflows/tag_and_publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ jobs:
1616
ref: ${{ env.DEFAULT_BRANCH }}
1717
fetch-depth: 0
1818
token: ${{ secrets.SERVICE_TOKEN }}
19-
- name: Set up Python 3.8
19+
- name: Set up Python 3.9
2020
uses: actions/setup-python@v3
2121
with:
22-
python-version: 3.8
22+
python-version: 3.9
2323
- name: Install dependencies
2424
run: |
2525
python -m pip install -e .[dev] --no-cache-dir
@@ -73,10 +73,10 @@ jobs:
7373
- uses: actions/checkout@v3
7474
- name: Pull latest changes
7575
run: git pull origin main
76-
- name: Set up Python 3.8
76+
- name: Set up Python 3.9
7777
uses: actions/setup-python@v2
7878
with:
79-
python-version: 3.8
79+
python-version: 3.9
8080
- name: Install dependencies
8181
run: |
8282
pip install --upgrade setuptools wheel twine build

.github/workflows/test_and_lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ 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' ]
1414
steps:
1515
- uses: actions/checkout@v3
1616
- name: Set up Python ${{ matrix.python-version }}
1717
uses: actions/setup-python@v3
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
21-
run: |
21+
run: |
2222
python -m pip install -e .[dev]
2323
- name: Run linter checks
2424
run: flake8 . && interrogate --verbose .

0 commit comments

Comments
 (0)