Skip to content

Commit

Permalink
#42 Drop support for PyPy.
Browse files Browse the repository at this point in the history
  • Loading branch information
Auke Willem Oosterhoff committed Nov 2, 2016
1 parent 9b9ff53 commit 26d71e1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 1 addition & 1 deletion docs/source/installation.rst
@@ -1,7 +1,7 @@
Installation
------------

uModbus has been tested_ on Python 2.7, Python 3.3+ and Pypy.
uModbus has been tested_ on Python 2.7 and Python 3.3+.

As package
==========
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""
uModbus is a pure Python implementation of the Modbus protocol with support
for Python 2.7, 3.3, 3.4, 3.5 and Pypy.
for Python 2.7, 3.3, 3.4 and 3.5.
"""
import os
Expand Down
5 changes: 0 additions & 5 deletions tests/system/responses/test_succesful_rtu_responses.py
@@ -1,11 +1,8 @@
import pytest
import platform

from umodbus import conf
from umodbus.client.serial import rtu

implementation = platform.python_implementation()


@pytest.fixture(scope='module', autouse=True)
def enable_signed_values(request):
Expand Down Expand Up @@ -41,8 +38,6 @@ def test_response_on_single_bit_value_read_requests(rtu_server, function):
assert send_message(req_adu, rtu_server) == [0, 1, 0, 1, 0, 1, 0, 1, 0, 1]


@pytest.mark.skipif(implementation == 'PyPy',
reason='#42 - Some test fail on PyPy')
@pytest.mark.parametrize('function', [
rtu.read_holding_registers,
rtu.read_input_registers,
Expand Down

0 comments on commit 26d71e1

Please sign in to comment.