Skip to content

Commit 069be41

Browse files
hallvictoriaAzureFunctionsPython
andauthored
build: update version to 4.41.0 (#1806)
* build: update workers version to 4.41.0 * remove 3.7 & 3.8 from tests * remove for public tests * remove test --------- Co-authored-by: AzureFunctionsPython <azfunc@microsoft.com>
1 parent adb41d1 commit 069be41

22 files changed

+10
-209
lines changed

eng/templates/jobs/ci-emulator-tests.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
Python37:
16-
PYTHON_VERSION: '3.7'
17-
Python38:
18-
PYTHON_VERSION: '3.8'
1915
Python39:
2016
PYTHON_VERSION: '3.9'
2117
Python310:

eng/templates/jobs/ci-unit-tests.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,6 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
Python37:
16-
PYTHON_VERSION: '3.7'
17-
Python38:
18-
PYTHON_VERSION: '3.8'
1915
Python39:
2016
PYTHON_VERSION: '3.9'
2117
Python310:

eng/templates/official/jobs/ci-docker-consumption-tests.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,6 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
Python38:
16-
PYTHON_VERSION: '3.8'
17-
STORAGE_CONNECTION: $(LinuxStorageConnectionString38)
18-
COSMOSDB_CONNECTION: $(LinuxCosmosDBConnectionString38)
19-
EVENTHUB_CONNECTION: $(LinuxEventHubConnectionString38)
20-
SERVICEBUS_CONNECTION: $(LinuxServiceBusConnectionString38)
21-
SQL_CONNECTION: $(LinuxSqlConnectionString38)
22-
EVENTGRID_URI: $(LinuxEventGridTopicUriString38)
23-
EVENTGRID_CONNECTION: $(LinuxEventGridConnectionKeyString38)
2415
Python39:
2516
PYTHON_VERSION: '3.9'
2617
STORAGE_CONNECTION: $(LinuxStorageConnectionString39)

eng/templates/official/jobs/ci-docker-dedicated-tests.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,6 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
Python38:
16-
PYTHON_VERSION: '3.8'
17-
STORAGE_CONNECTION: $(LinuxStorageConnectionString38)
18-
COSMOSDB_CONNECTION: $(LinuxCosmosDBConnectionString38)
19-
EVENTHUB_CONNECTION: $(LinuxEventHubConnectionString38)
20-
SERVICEBUS_CONNECTION: $(LinuxServiceBusConnectionString38)
21-
SQL_CONNECTION: $(LinuxSqlConnectionString38)
22-
EVENTGRID_URI: $(LinuxEventGridTopicUriString38)
23-
EVENTGRID_CONNECTION: $(LinuxEventGridConnectionKeyString38)
2415
Python39:
2516
PYTHON_VERSION: '3.9'
2617
STORAGE_CONNECTION: $(LinuxStorageConnectionString39)

eng/templates/official/jobs/ci-e2e-tests.yml

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,24 +12,6 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
Python37:
16-
PYTHON_VERSION: '3.7'
17-
STORAGE_CONNECTION: $(LinuxStorageConnectionString37)
18-
COSMOSDB_CONNECTION: $(LinuxCosmosDBConnectionString37)
19-
EVENTHUB_CONNECTION: $(LinuxEventHubConnectionString37)
20-
SERVICEBUS_CONNECTION: $(LinuxServiceBusConnectionString37)
21-
SQL_CONNECTION: $(LinuxSqlConnectionString37)
22-
EVENTGRID_URI: $(LinuxEventGridTopicUriString37)
23-
EVENTGRID_CONNECTION: $(LinuxEventGridConnectionKeyString37)
24-
Python38:
25-
PYTHON_VERSION: '3.8'
26-
STORAGE_CONNECTION: $(LinuxStorageConnectionString38)
27-
COSMOSDB_CONNECTION: $(LinuxCosmosDBConnectionString38)
28-
EVENTHUB_CONNECTION: $(LinuxEventHubConnectionString38)
29-
SERVICEBUS_CONNECTION: $(LinuxServiceBusConnectionString38)
30-
SQL_CONNECTION: $(LinuxSqlConnectionString38)
31-
EVENTGRID_URI: $(LinuxEventGridTopicUriString38)
32-
EVENTGRID_CONNECTION: $(LinuxEventGridConnectionKeyString38)
3315
Python39:
3416
PYTHON_VERSION: '3.9'
3517
STORAGE_CONNECTION: $(LinuxStorageConnectionString39)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4-
VERSION = '4.40.2'
4+
VERSION = '4.41.0'

workers/proxy_worker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33

4-
VERSION = '4.40.2'
4+
VERSION = '4.41.0'

workers/tests/emulator_tests/test_deferred_bindings_blob_functions.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,10 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
3-
import sys
43
import time
5-
import unittest
64

75
from tests.utils import testutils
86

97

10-
@unittest.skipIf(sys.version_info.minor <= 8, "The base extension"
11-
"is only supported for 3.9+.")
128
class TestDeferredBindingsBlobFunctions(testutils.WebHostTestCase):
139

1410
@classmethod

workers/tests/emulator_tests/test_eventhub_batch_functions.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33
import json
4-
import sys
54
import time
65
from datetime import datetime
7-
from unittest.case import skipIf
86

97
from dateutil import parser
108
from tests.utils import testutils
@@ -66,9 +64,6 @@ def test_eventhub_multiple(self):
6664

6765
self.assertDictEqual(all_row_keys_seen, row_keys_seen)
6866

69-
@skipIf(sys.version_info.minor == 7,
70-
"Using azure-eventhub SDK with the EventHub Emulator"
71-
"requires Python 3.8+")
7267
@testutils.retryable_test(3, 5)
7368
def test_eventhub_multiple_with_metadata(self):
7469
# Generate a unique event body for EventHub event
@@ -176,9 +171,6 @@ def test_eventhub_multiple(self):
176171

177172
self.assertDictEqual(all_row_keys_seen, row_keys_seen)
178173

179-
@skipIf(sys.version_info.minor == 7,
180-
"Using azure-eventhub SDK with the EventHub Emulator"
181-
"requires Python 3.8+")
182174
@testutils.retryable_test(3, 5)
183175
def test_eventhub_multiple_with_metadata(self):
184176
# Generate a unique event body for EventHub event

workers/tests/emulator_tests/test_eventhub_functions.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# Copyright (c) Microsoft Corporation. All rights reserved.
22
# Licensed under the MIT License.
33
import json
4-
import sys
54
import time
65

7-
from unittest import skipIf
8-
96
from tests.utils import testutils
107

118

@@ -55,9 +52,6 @@ def test_eventhub_trigger(self):
5552
# Check if the event body matches the initial data
5653
self.assertEqual(response, doc)
5754

58-
@skipIf(sys.version_info.minor == 7,
59-
"Using azure-eventhub SDK with the EventHub Emulator"
60-
"requires Python 3.8+")
6155
@testutils.retryable_test(3, 5)
6256
def test_eventhub_trigger_with_metadata(self):
6357
# Generate a unique event body for EventHub event

0 commit comments

Comments
 (0)