Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,6 @@

# 1.1.10 (2021-01-16)
- Adjust absolute paths to relative - deveops building wheels

# 1.1.11 (2022-10-03)
- Bump Numpy to 1.22.0 to resolve [CVE-2021-34141](https://vuln.whitesourcesoftware.com/vulnerability/CVE-2021-34141)
2 changes: 1 addition & 1 deletion python2-requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.16.2
numpy>=1.22.0
matplotlib
pytest>=3.5.1
setuptools>=39.1.0
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
numpy>=1.16.2
numpy>=1.22.0
matplotlib>=3.0.3
pytest>=3.5.1
setuptools>=39.1.0
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
include_package_data=True,
packages = setuptools.find_packages(),
setup_requires=['cython>=0.x', 'wheel'],
install_requires=['numpy>=1.16.2', matplot, 'protobuf>=3.11.2,<4.0.0', scipy],
install_requires=['numpy>=1.22.0', matplot, 'protobuf>=3.11.2,<4.0.0', scipy],
ext_modules=cythonize(extensions),
include_dirs=[numpy.get_include()],
classifiers=[
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version_info__ = (1, 1, 10)
__version_info__ = (1, 1, 11)
__version__ = '.'.join(map(str, __version_info__))
MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION = __version_info__