Skip to content

Commit

Permalink
new release
Browse files Browse the repository at this point in the history
  • Loading branch information
jhavl committed Jul 31, 2020
1 parent 97e42b4 commit 4ffe0f7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RELEASE
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.1
0.3.2
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

# Get the release/version string
with open(path.join(here, 'RELEASE'), encoding='utf-8') as f:
release = f.read()

frne = Extension(
'frne',
sources=[
Expand All @@ -17,11 +21,12 @@
setup(
name='ropy',

version='0.3.1',
version=release,

description='A Python library for robot control',

long_description=long_description,

long_description_content_type='text/markdown',

url='https://github.com/jhavl/ropy',
Expand Down

0 comments on commit 4ffe0f7

Please sign in to comment.