Skip to content

Commit 40ae592

Browse files
committed
Setting maximum versions for dependencies. Related to issue #73
1 parent 15ecdda commit 40ae592

3 files changed

Lines changed: 5 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
### 3.0.2
2+
Hotfix release - setting maximum versions for dependencies. Related to github issue #73
3+
14
#### 3.0.1
25
* **Removed Python 2.7 support**
36
* **Added Python 3.8 support**

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,5 +83,5 @@ def find_version(*file_paths):
8383
# your project is installed. For an analysis of "install_requires" vs pip's
8484
# requirements files see:
8585
# https://packaging.python.org/en/latest/requirements.html
86-
install_requires=['openpyxl>=2.5', 'colour>=0.1.5', 'jsonschema', 'xlrd>=1.0.0', 'pandas<1.1.0']
86+
install_requires=['openpyxl>=2.5,<3.0.3', 'colour>=0.1.5,<0.2', 'jsonschema', 'xlrd>=1.0.0,<1.3.0', 'pandas<1.1.0']
8787
)

styleframe/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_all_versions():
1717
return _versions_
1818

1919

20-
_version_ = '3.0.1'
20+
_version_ = '3.0.2'
2121
_python_version_ = get_python_version()
2222
_pandas_version_ = get_pandas_version()
2323
_openpyxl_version_ = get_openpyxl_version()

0 commit comments

Comments
 (0)