Skip to content

Commit

Permalink
Remove references to 3.7 (#2172)
Browse files Browse the repository at this point in the history
Fixes #2171
  • Loading branch information
ocelotl committed Feb 13, 2024
1 parent d167ef7 commit 03fcc17
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@


from platform import python_implementation
from sys import version_info
from timeit import default_timer
from urllib import request
from urllib.parse import urlencode
Expand Down Expand Up @@ -189,8 +188,7 @@ def test_basic_metric_request_not_empty(self):
)

@mark.skipif(
python_implementation() == "PyPy" or version_info.minor == 7,
reason="Fails randomly in 3.7 and pypy",
python_implementation() == "PyPy", reason="Fails randomly in pypy"
)
def test_metric_uninstrument(self):
with request.urlopen(self.URL):
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ envlist =
py3{8,9,10,11}-test-instrumentation-grpc

; opentelemetry-instrumentation-sqlalchemy
py3{7}-test-instrumentation-sqlalchemy-{11}
py3{8,9,10,11}-test-instrumentation-sqlalchemy-{14}
pypy3-test-instrumentation-sqlalchemy-{11,14}

Expand Down

0 comments on commit 03fcc17

Please sign in to comment.