Skip to content

Commit b4700da

Browse files
chore: Remove Python 3.7 from workflows (#806)
* chore: Remove Python 3.7 from workflows * Skip batch send tests
1 parent 0d498a6 commit b4700da

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

.github/workflows/ci.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
python: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.8']
11+
python: ['3.8', '3.9', '3.10', '3.11', '3.12', 'pypy3.8']
1212

1313
steps:
1414
- uses: actions/checkout@v4
@@ -35,10 +35,10 @@ jobs:
3535
runs-on: ubuntu-latest
3636
steps:
3737
- uses: actions/checkout@v4
38-
- name: Set up Python 3.7
38+
- name: Set up Python 3.8
3939
uses: actions/setup-python@v5
4040
with:
41-
python-version: 3.7
41+
python-version: 3.8
4242
- name: Install dependencies
4343
run: |
4444
python -m pip install --upgrade pip

.github/workflows/nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Set up Python
3737
uses: actions/setup-python@v5
3838
with:
39-
python-version: 3.7
39+
python-version: 3.8
4040

4141
- name: Install dependencies
4242
run: |

.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: Set up Python
4848
uses: actions/setup-python@v5
4949
with:
50-
python-version: 3.7
50+
python-version: 3.8
5151

5252
- name: Install dependencies
5353
run: |

CONTRIBUTING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ information on using pull requests.
8585

8686
### Initial Setup
8787

88-
You need Python 3.7+ to build and test the code in this repo.
88+
You need Python 3.8+ to build and test the code in this repo.
8989

9090
We recommend using [pip](https://pypi.python.org/pypi/pip) for installing the necessary tools and
9191
project dependencies. Most recent versions of Python ship with pip. If your development environment

integration/test_messaging.py

+2
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,7 @@ def test_send_each_for_multicast():
148148
assert response.exception is not None
149149
assert response.message_id is None
150150

151+
@pytest.mark.skip(reason="Replaced with test_send_each")
151152
def test_send_all():
152153
messages = [
153154
messaging.Message(
@@ -179,6 +180,7 @@ def test_send_all():
179180
assert isinstance(response.exception, exceptions.InvalidArgumentError)
180181
assert response.message_id is None
181182

183+
@pytest.mark.skip(reason="Replaced with test_send_each_500")
182184
def test_send_all_500():
183185
messages = []
184186
for msg_number in range(500):

0 commit comments

Comments
 (0)