Skip to content

Commit ffbe1bf

Browse files
Updates setup.py to use requirements.txt
1 parent 71a58b4 commit ffbe1bf

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

setup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@
4747
Topic :: Software Development :: Testing
4848
""".strip().splitlines()
4949

50+
with open(join(ROOT_DIR, 'requirements.txt')) as f:
51+
REQUIREMENTS = f.read().splitlines()
52+
5053
# This solution is found at http://stackoverflow.com/a/26490820/5889853
5154
from setuptools.command.install import install
5255
import os
@@ -72,6 +75,7 @@ def run(self):
7275
author_email='[email protected]',
7376
url='https://github.com/robotframework/RIDE/',
7477
download_url='https://pypi.python.org/pypi/robotframework-ride',
78+
install_requires = REQUIREMENTS,
7579
package_dir={'': SOURCE_DIR},
7680
packages=find_packages(SOURCE_DIR),
7781
package_data=package_data,

src/robotide/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
# limitations under the License.
1515
#
1616
# Automatically generated by `tasks.py`.
17-
VERSION = '1.7.3'
17+
VERSION = '1.7.3.1'

0 commit comments

Comments
 (0)