8000 Revert MICROPY_FULL_VERSION_INFO to MICROPY_BANNER_NAME_AND_VERSION · adafruit/circuitpython@a20d445 · GitHub
[go: up one dir, main page]

Skip to content

Commit a20d445

Browse files
committed
Revert MICROPY_FULL_VERSION_INFO to MICROPY_BANNER_NAME_AND_VERSION
1 parent 750912d commit a20d445

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/modsys.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ const mp_print_t mp_sys_stdout_print = {&mp_sys_stdout_obj, mp_stream_write_adap
5858
#endif
5959

6060
// version - Python language version that this implementation conforms to, as a string
61-
STATIC const MP_DEFINE_STR_OBJ(mp_sys_version_obj, "3.4.0; " MICROPY_FULL_VERSION_INFO);
61+
STATIC const MP_DEFINE_STR_OBJ(mp_sys_version_obj, "3.4.0; " MICROPY_BANNER_NAME_AND_VERSION);
6262

6363
// version_info - Python language version that this implementation conforms to, as a tuple of ints
6464
#define I(n) MP_OBJ_NEW_SMALL_INT(n)

0 commit comments

Comments
 (0)
0