Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Snyk] Security upgrade pillow from 6.2.2 to 8.1.1 #5

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
13 changes: 5 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,23 +12,20 @@ Symmetrization of 2D pattern using nonrigid landmark registration with symmetry

### Installation

Install the PyPI version
1. Install the PyPI version

```bash
pip install symmetrize
```
<pre><code class="console"> pip install symmetrize </code></pre>

Install the latest version from source repository
2. Install the latest version from source repository

```bash
pip install git+https://github.com/RealPolitiX/symmetrize.git
```
<pre><code class="console"> pip install git+https://github.com/RealPolitiX/symmetrize.git </code></pre>


### Requirements

See [requirements](https://github.com/RealPolitiX/symmetrize/blob/master/requirements.txt)


### Documentation and use

Documentation of the package may be found [here](https://realpolitix.github.io/symmetrize/html/index.html) along with examples illustrating the main functionalities in [here](https://github.com/RealPolitiX/symmetrize/tree/master/examples).
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ opencv-python
# Packaging
sphinx_rtd_theme
sphinx
recommonmark
recommonmark
pillow>=8.1.1 # not directly required, pinned by Snyk to avoid a vulnerability
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
install_requires = [x.strip() for x in all_reqs if 'git+' not in x]
dependency_links = [x.strip().replace('git+', '') for x in all_reqs if x.startswith('git+')]

with open(path.join(here, 'README.md'), encoding='utf-8') as f:
with open(path.join(here, 'README.md')) as f:
long_description = f.read()

setup(
Expand Down