Skip to content

Commit 96882c5

Browse files
Bump to 1.0.8
1 parent 6749b1b commit 96882c5

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
Change Log:
22
===========
33

4+
v1.0.8:
5+
-------
6+
7+
- All plots now return figure and axes objects
8+
- Fix bug in frame_properties causing the program to crash under certain circumstances
9+
410
v1.0.7:
511
-------
612

docs/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@
2424
author = 'Robbie van Leeuwen'
2525

2626
# The short X.Y version
27-
version = '1.0.7'
27+
version = '1.0.8'
2828
# The full version, including alpha/beta/rc tags
29-
release = '1.0.7'
29+
release = '1.0.8'
3030

3131

3232
# -- General configuration ---------------------------------------------------

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ def readme():
1717
if sys.version_info[0] < 3 or sys.version_info[0] == 3 and sys.version_info[1] < 6:
1818
sys.exit('Sorry, Python < 3.6 is not supported')
1919

20-
install_requires = ['numpy', 'scipy', 'matplotlib', 'shapely']
20+
install_requires = ['numpy', 'scipy<=1.5', 'matplotlib', 'shapely']
2121

2222
if not (sys.platform == 'win32' or sys.platform == 'cygwin'):
2323
install_requires.append('pybind11')
2424
install_requires.append('meshpy')
2525

2626
setup(
2727
name='sectionproperties',
28-
version='1.0.7',
28+
version='1.0.8',
2929
description=description_text(),
3030
long_description=readme(),
3131
long_description_content_type='text/markdown',

0 commit comments

Comments
 (0)