From a822844d49c48c86fcdf420df56f5b5f32280d75 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl>
Date: Tue, 29 Jun 2021 18:56:10 +0200
Subject: [PATCH] unit test for pypy, v2.4

---
 Dockerfile | 8 +++-----
 setup.cfg  | 2 +-
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index d01bdd6..5a642ca 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,14 +1,12 @@
-FROM python:3.5
+FROM pypy:3.5
 RUN apt-get update && \
     apt-get install -y patchelf
-RUN python -m pip install Cython pytest coverage pytest-cov auditwheel doctor-wheel twine
-
-ENV DEBUG=1
+RUN pypy3 -m pip install Cython pytest coverage pytest-cov auditwheel doctor-wheel twine
 
 WORKDIR /tmp/compile
 ADD . /tmp/compile/
 
-RUN python setup.py install && \
+RUN pypy3 setup.py install && \
     chmod ugo+x /tmp/compile/tests/test.sh
 
 CMD ["/tmp/compile/tests/test.sh"]
diff --git a/setup.cfg b/setup.cfg
index fee2bf5..fdc3ec5 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,6 +1,6 @@
 # coding: utf-8
 [metadata]
-version = 2.4a5
+version = 2.4
 name = minijson
 long_description = file: README.md
 long_description_content_type = text/markdown; charset=UTF-8
-- 
GitLab