Skip to content
This repository was archived by the owner on Jun 7, 2023. It is now read-only.

Commit 9643156

Browse files
committed
bug fixes:
* support files in python and other languages * add factory to poll
1 parent 16df079 commit 9643156

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
with open('requirements.txt', 'r') as fh:
44
dependencies = [l.strip() for l in fh]
55

6+
VERSION='4.1.4'
67
setup(
78
name='runestone',
89
description='Sphinx extensions for writing interactive documents.',
9-
version='4.1.3',
10+
version=VERSION,
1011
author = 'Brad Miller',
1112
author_email = 'bonelake@mac.com',
1213
packages= find_packages(exclude=['*.*.test']),
@@ -17,7 +18,7 @@
1718
package_data = { '' : ['js/*.js', 'css/*.css', '*.txt']},
1819
license='GPL',
1920
url = 'https://github.com/RunestoneInteractive/RunestoneComponents',
20-
download_url = 'https://github.com/RunestoneInteractive/RunestoneComponents/tarball/4.1.2',
21+
download_url = 'https://github.com/RunestoneInteractive/RunestoneComponents/tarball/{}'.format(VERSION),
2122
keywords = ['runestone', 'sphinx', 'ebook'], # arbitrary keywords
2223
classifiers=('Development Status :: 5 - Production/Stable',
2324
'Environment :: Console',

0 commit comments

Comments
 (0)