Skip to content

Commit

Permalink
Remove version name from EEP.xml filename.
Browse files Browse the repository at this point in the history
The versioning follows the official, public version of 'EnOcean Equipment Profiles' documentation, and should be checked regularly.

The public documentation can be found at https://www.enocean.com/en/knowledge-base/
  • Loading branch information
kipe committed Jan 7, 2016
1 parent 6fdd86f commit 21cebd8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<telegrams>
<telegrams version="2.6.4" major_version="2" minor_version="6" revision="4">
<telegram rorg="0xF6" type="RPS" description="RPS Telegram">
<profiles func="0x02" description="Rocker Switch, 2 Rocker">
<profile type="0x02" description="Light and Blind Control - Application Style 2">
Expand Down
2 changes: 1 addition & 1 deletion enocean/protocol/eep.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class EEP(object):
def __init__(self):
self.ok = False
try:
with open(os.path.join(path, 'EEP_2.6.1.xml'), 'r') as f:
with open(os.path.join(path, 'EEP.xml'), 'r') as f:
self.soup = BeautifulSoup(f.read(), "html.parser")
self.ok = True
except IOError:
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name='enocean',
version='0.30',
version='0.31',
description='EnOcean serial protocol implementation',
author='Kimmo Huoman',
author_email='[email protected]',
Expand All @@ -20,7 +20,7 @@
'examples/enocean_example.py',
],
package_data={
'': ['EEP_2.6.1.xml']
'': ['EEP.xml']
},
install_requires=[
'enum-compat>=0.0.2',
Expand Down

0 comments on commit 21cebd8

Please sign in to comment.