Skip to content

Commit b6c9491

Browse files
authored
Relax minor version in dependencies (#20)
1 parent 22038d8 commit b6c9491

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ before_install:
2121
install:
2222
- npm install
2323
- pip install .[dependencies]
24+
- pip install dash[dev]
2425
- pip install .[tests]
2526
- pip install dash[testing]
2627
- wget https://chromedriver.storage.googleapis.com/76.0.3809.12/chromedriver_linux64.zip

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ If you have selected install_dependencies during the prompt, you can skip this p
3737
3. Install python packages required to build components.
3838
```
3939
pip install .[dependencies]
40+
pip install dash[dev]
4041
```
4142
4. Install the python packages for testing (optional)
4243
```

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
package_name = package['name'].replace(' ', '_').replace('-', '_')
1313

1414
install_requires = [
15-
'dash~=1.0.1'
15+
'dash~=1.1'
1616
]
1717

1818
tests_require = [
@@ -43,7 +43,7 @@
4343
'tests': tests_require,
4444
'dependencies': install_requires
4545
},
46-
setup_requires=['setuptools_scm>=3.2.0'],
46+
setup_requires=['setuptools_scm~=3.2'],
4747
use_scm_version=True,
4848
classifiers=[
4949
'Programming Language :: Python :: 3',

0 commit comments

Comments
 (0)