Skip to content

Commit

Permalink
use upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
jabdoa2 committed Nov 19, 2016
1 parent 6dc0747 commit d1b4d89
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 11 deletions.
6 changes: 1 addition & 5 deletions .gitmodules
@@ -1,5 +1 @@
[submodule "mpf/pyserial_asyncio"]
path = mpf/pyserial_asyncio
# url = https://github.com/pyserial/pyserial-asyncio.git
url = https://github.com/jabdoa2/pyserial-asyncio.git
branch = improve_windows_support

2 changes: 1 addition & 1 deletion mpf/core/clock.py
Expand Up @@ -3,7 +3,7 @@
import asyncio
from functools import partial

from mpf.pyserial_asyncio.serial_asyncio import create_serial_connection
from serial_asyncio import create_serial_connection


class PeriodicTask:
Expand Down
1 change: 0 additions & 1 deletion mpf/pyserial_asyncio
Submodule pyserial_asyncio deleted from e03f28
3 changes: 1 addition & 2 deletions mpf/tests/loop.py
Expand Up @@ -9,8 +9,7 @@
import asyncio

from mpf.core.clock import ClockBase

from mpf.pyserial_asyncio.serial_asyncio import SerialTransport
from serial_asyncio import SerialTransport


class NextTimers:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -61,14 +61,14 @@

include_package_data=True,

package_data={'': ['*.yaml', '*.png', '*.so', '*.pyd', '*.ogg', '*.wav', 'mpf/pyserial_asyncio/*']},
package_data={'': ['*.yaml', '*.png', '*.so', '*.pyd', '*.ogg', '*.wav']},

# MANIFEST.in picks up the rest
packages=['mpf'],

zip_safe=False,

install_requires=['ruamel.yaml>=0.10, <0.11', 'pyserial'],
install_requires=['ruamel.yaml>=0.10, <0.11', 'pyserial>=3.2.0', 'pyserial-asyncio>=0.2'],

tests_require=[],
test_suite="mpf.tests",
Expand Down

0 comments on commit d1b4d89

Please sign in to comment.