#!/bin/sh

ver_new="$1"
ver_old="$2"

if [ "$(apk version -t "$ver_old" "2.0.18-r2")" = "<" ]; then
	cat 1>&2 <<-EOF
	*
	* uWSGI plugins for Python 2 were removed. uwsgi-python and uwsgi-gevent
	* are aliases for uwsgi-python3 and uwsgi-gevent3, respectively!
	* 
	EOF
fi

exit 0
