Skip to content

Commit 1475ad1

Browse files
committed
[EXECUTOR] Updated Python version to 3.11
1 parent 1c66e4b commit 1475ad1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

executor/Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ LIBS=-pthread -lrt -Wall -export-dynamic -fPIC
55
SRCS = executor.c gamestate_filter.c ../logger/logger.c ../runtime_util/runtime_util.c ../shm_wrapper/shm_wrapper.c
66

77
# Python compilation definitions
8-
PY_VER = python3.10
8+
PY_VER = python3.11
99
PY_LIB = -l$(PY_VER)
1010
CFLAGS = $(shell $(PY_VER)-config --cflags)
1111

executor/executor.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define PY_SSIZE_T_CLEAN
22
#include <arpa/inet.h> //for networking
33
#include <pthread.h> //for POSIX threads
4-
#include <python3.10/Python.h> // For Python's C API
4+
#include <python3.11/Python.h> // For Python's C API
55
#include <signal.h> // Used to handle SIGTERM, SIGINT, SIGKILL
66
#include <stdint.h> //for standard int types
77
#include <stdio.h> //for i/o

0 commit comments

Comments
 (0)