Skip to content

Commit 9b9b3d4

Browse files
committed
Drop explicit PyPy support
PyPy will be supported inasmuch as it is compatible with the currently supported Python version.
1 parent 7f7fc8e commit 9b9b3d4

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ matrix:
88
env: RUN_LINTER=1
99
- python: nightly
1010
dist: xenial
11-
- python: pypy3
12-
dist: trusty
1311
allow_failures:
1412
- python: nightly
1513

@@ -32,8 +30,7 @@ before_install:
3230
fi
3331
3432
script:
35-
- if [[ $TRAVIS_PYTHON_VERSION != 'pypy' ]]; then export MM_FORCE_EXT_TESTS=1; fi
36-
- CFLAGS="-Werror -Wall -Wextra" coverage run --source maxminddb setup.py test
33+
- MM_FORCE_EXT_TESTS=1 CFLAGS="-Werror -Wall -Wextra" coverage run --source maxminddb setup.py test
3734
- if [[ $RUN_SNYK && $SNYK_TOKEN ]]; then snyk test --org=maxmind --file=requirements.txt; fi
3835
- if [[ $RUN_LINTER ]]; then mypy maxminddb tests; fi
3936
- if [[ $RUN_LINTER ]]; then pylint --rcfile .pylintrc maxminddb/*.py; fi

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,8 +94,7 @@ Requirements
9494
------------
9595

9696
This code requires Python 3.7+. Older versions are not supported. The C
97-
extension requires CPython. The pure Python implementation has been tested with
98-
PyPy3.
97+
extension requires CPython.
9998

10099
Versioning
101100
----------

0 commit comments

Comments
 (0)