Skip to content

Commit

Permalink
Merge pull request #71 from fossology/chor/version/bump-version
Browse files Browse the repository at this point in the history
chore(atarashi): Bump version to 0.0.11

Reviewed by: anupam.ghosh@siemens.com
Tested by: anupam.ghosh@siemens.com
  • Loading branch information
ag4ums committed Oct 14, 2020
2 parents 23877ee + 25f8600 commit cb52027
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions Dockerfile
Expand Up @@ -26,7 +26,6 @@ COPY . .

RUN mkdir wheels
RUN python -m pip wheel --use-pep517 --wheel-dir wheels .
RUN python -m pip wheel --use-pep517 --wheel-dir wheels code_comment@git+https://github.com/amanjain97/code_comment@master#egg=code_comment

FROM python:3.7-slim

Expand All @@ -39,8 +38,8 @@ WORKDIR /home/atarashi

COPY --from=builder /atarashi/wheels/ .

RUN python -m pip install *.whl \
&& rm *.whl
RUN python -m pip install ./*.whl \
&& rm ./*.whl

USER atarashi

Expand Down
2 changes: 1 addition & 1 deletion atarashi/atarashii.py
Expand Up @@ -30,7 +30,7 @@

__author__ = "Aman Jain"
__email__ = "amanjain5221@gmail.com"
__version__ = "0.0.10"
__version__ = "0.0.11"


def atarashii_runner(inputFile, processedLicense, agent_name, similarity="CosineSim", ngramJsonLoc=None, verbose=None):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -112,7 +112,7 @@ def run(self):

metadata = dict(
name = "atarashi",
version = "0.0.10",
version = "0.0.11",
author = "Aman Jain",
author_email = "amanjain5221@gmail.com",
description = ("An intelligent license scanner."),
Expand Down

0 comments on commit cb52027

Please sign in to comment.