Skip to content

Commit d6bd8a7

Browse files
authored
Merge pull request #35 from apulverizer/develop
v0.2.3
2 parents 86b4f38 + 04e8140 commit d6bd8a7

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

build.Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,9 @@ USER allagash
2525
WORKDIR $HOME
2626

2727
COPY --chown=allagash:allagash ci-environment.yml ci-environment.yml
28-
COPY --chown=allagash:allagash src src
28+
29+
# Copy the license and readme file into the source so it will be included in the built package
30+
COPY --chown=allagash:allagash src LICENSE README.md src/
2931

3032
# Configure conda env
3133
RUN conda env create -f ci-environment.yml \

src/MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include README.md LICENSE

src/allagash/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .problem import Problem, UnboundedException, UndefinedException, InfeasibleException, NotSolvedException
22
from .coverage import Coverage
33

4-
__version__ = "0.2.2"
4+
__version__ = "0.2.3"

0 commit comments

Comments
 (0)