Skip to content

Commit 7aea483

Browse files
committed
addressing review comments
1 parent 0039841 commit 7aea483

File tree

2 files changed

+3
-8
lines changed

2 files changed

+3
-8
lines changed

core/util/Exception.h

+2-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
1-
#if defined(__GNUC__) && !defined(__clang__)
2-
#if __GNUC__ >= 13
1+
// Include cstdint for GCC 13+ or Clang 13+
2+
#if (defined(__GNUC__) && !defined(__clang__) && (__GNUC__ >= 13)) || (defined(__clang__) && (__clang_major__ >= 13))
33
#include <cstdint>
44
#endif
5-
#elif defined(__clang__)
6-
#if __clang_major__ >= 13
7-
#include <cstdint>
8-
#endif
9-
#endif
105
#pragma once
116

127
#include <exception>

noxfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
# Set epochs to train VGG model for accuracy tests
3535
EPOCHS = 25
3636

37-
SUPPORTED_PYTHON_VERSIONS = ["3.7", "3.8", "3.9", "3.10", "3.12"]
37+
SUPPORTED_PYTHON_VERSIONS = ["3.9", "3.10", "3.11", "3.12"]
3838

3939
nox.options.sessions = [
4040
"l0_api_tests-" + "{}.{}".format(sys.version_info.major, sys.version_info.minor)

0 commit comments

Comments
 (0)