Skip to content

Commit 271d235

Browse files
committed
Merge branch 'devel'
2 parents f4f3b1c + 40ae592 commit 271d235

5 files changed

Lines changed: 12 additions & 15 deletions

File tree

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,19 @@ python:
77
- 3.6
88
- 3.7
99
- 3.8
10+
- 3.9-dev
1011
- "nightly"
1112
cache: pip
12-
env:
13-
- PANDAS=specific
14-
- PANDAS=latest
13+
# env:
14+
# - PANDAS=specific
15+
# - PANDAS=latest
1516
jobs:
1617
allow_failures:
18+
- python: 3.9-dev
1719
- python: "nightly"
1820
install:
1921
- pip install -r requirements.txt
20-
- if [ $PANDAS = latest ]; then pip install pandas -U; fi
22+
# - if [ $PANDAS = latest ]; then pip install pandas -U; fi
2123
- pip install codecov
2224
before_script:
2325
- cd styleframe/tests/

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**

docs/commandline_interface.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Flag Explanation
1515
==================================== =========================================================================
1616
``-v`` Displays the installed versions of styleframe and its dependencies
1717
``--json_path`` or ``--json-path`` Path to the json file
18-
``--json`` json string
18+
``--json`` The json string which defines the Excel file, see example below
1919
``--output_path`` or ``output-path`` Path to the output xlsx file. If not provided defaults to ``output.xlsx``
2020
``--test`` Execute the tests
2121
==================================== =========================================================================

setup.py

100755100644
Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +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'],
87-
extras_require={
88-
':python_version <= "3.4"': [
89-
'pandas >= 0.16.2, <= 0.22.*'
90-
],
91-
':python_version > "3.4"': [
92-
'pandas >= 0.23.2'
93-
]
94-
}
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']
9587
)

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)