Skip to content

Commit 7244d91

Browse files
committed
Update workflow to meet minimum requirements
1 parent 6a56da8 commit 7244d91

File tree

1 file changed

+3
-9
lines changed

1 file changed

+3
-9
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ jobs:
1414
- name: Install Python 3
1515
uses: actions/setup-python@v3
1616
with:
17-
python-version: 3.8
17+
python-version: 3.9
1818
- name: Install dependencies
1919
run: |
2020
python -m pip install --upgrade pip
2121
pip install -r requirements.txt
2222
pip install python-dateutil backoff monotonic
2323
pip install --user .
24-
sudo pip install pylint==2.8.0 flake8 mock==3.0.5 python-dateutil aiohttp==3.9.1
24+
sudo pip install pylint==3.3.1 flake8 mock==3.0.5 python-dateutil aiohttp==3.9.1
2525
- name: Run tests
2626
run: python -m unittest discover -s segment
2727

@@ -41,17 +41,11 @@ jobs:
4141
# runs-on: ubuntu-latest
4242
# strategy:
4343
# matrix:
44-
# python: ['3.7', '3.8', '3.9', '3.10', '3.11']
44+
# python: ['3.9', '3.10', '3.11']
4545
# coverage: [false]
4646
# experimental: [false]
4747
# include:
4848
# # Run code coverage.
49-
# - python: '3.7'
50-
# coverage: true
51-
# experimental: false
52-
# - python: '3.8'
53-
# coverage: true
54-
# experimental: false
5549
# - python: '3.9'
5650
# coverage: true
5751
# experimental: false

0 commit comments

Comments
 (0)