Skip to content

Commit

Permalink
Bump version to 0.0.24
Browse files Browse the repository at this point in the history
  • Loading branch information
GlassOfWhiskey committed Mar 22, 2021
1 parent 525235c commit 41755a3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dist: bionic
language: python
python: 3.7
python: 3.8
services:
- docker
branches:
Expand All @@ -9,13 +9,13 @@ branches:
env:
- STREAMFLOW_VERSION="$(cat streamflow/version.py | grep -oP '(?<=VERSION = \")(.*)(?=\")')"
install:
- pip install pipenv
- pipenv --python 3.7
- pip install pipenv pip-search
- pipenv --python 3.8
- pipenv install --dev
script: pipenv run pytest
before_deploy:
- |
if [ "${STREAMFLOW_VERSION}" != "$(pip search streamflow | grep -oP "(?<=^streamflow \()(.*)(?=\))")" ]; then
if [ "${STREAMFLOW_VERSION}" != "$(pip_search streamflow | grep -oP "(?<=^streamflow \()(.*)(?=\))")" ]; then
# Add git tag
git config --local user.name "alpha-unito-bot"
git config --local user.email "alpha@di.unito.it"
Expand Down Expand Up @@ -51,13 +51,13 @@ deploy:
secure: httTThmkxpkucPfUaHpE9sH5VcrOGcu7pQWQ4n3Cp1/6HTbdWUXQyP9z1NjlpIYoN9EMjNL9Qz80gTmHx392LlJmlckX3v4brWO8wQIg28BZ1YifMDou7b4igap7dqh0n65toSdgVBRakUoh2C7fNNVlXp1hQ88wcpRI8823t2GEC6p74/Lh32zjCAt5DErVxAfO3CQsEbOdA2NrRlkQjJ5d/oRl0FCHW2vXGfZEA4dYlknATKhN3zcXRL9DvAUKI4kEjVpTfUFtFmLAXpCBluVb7isbL0coO/hgno9Cnj5utH29vTOWJTkfPItEzJCyJPy9ZvDWhlHXnGRtBLpSxuuQbRhqhQPWbCu4drpnpz87X5nXPjHgcfva2DkzSAevI+o21L9vY0YzLVYIRb6OFS6AHOoe2CldGlWx25iCMcJj3b2ls9tyR0ZOB4JEcz2I9u4XDONcPVFvL7xQKYtwpH6C7N4HutW7kTnscVWZ86eZTsXkV0C9UPIkEmwRgjHHbPVl0iDj0u/Xu0wk8/gUdQWHAXJdrRqvSfUhpUpAjIK48dNGC7egR2iQDCpF7SEwZeqO0UfK5B8geHFY5J19JlIGPx82D/uVM7lXWkxuWkTZ3DQaoesIuFsSpiFJdZOwDhj3GnK4HktUoUQNQalv/fLGTCcV3q98BTbd9N2qkpE=
on:
branch: master
condition: ${STREAMFLOW_VERSION} != $(pip search streamflow | grep -oP "(?<=^streamflow \()(.*)(?=\))")
condition: ${STREAMFLOW_VERSION} != $(pip_search streamflow | grep -oP "(?<=^streamflow \()(.*)(?=\))")
- provider: pypi
user: __token__
password:
secure: Nb2j+yB7IO2MwU12DuVh416ECBWw01EnvEWrknBSlHQ92EFMIYbD4ADa4qqsBQoHiwBeSNAhc4GbcJEl/c5bh8NzHEFY/eKzE8XuNnarSROhaJ+1DgdTmMX9MV9euNLjd+2SZbABzog4JP6jxxuEH1xLrPRaLZn59bVPfGIRys6xb4z+H7v3oA0dgxmFsMdMfGLhAe+6poEd8u5goruPuohjvG4x9KCmbi2CAXqwHp/s8n6Ea/EHHrg2Rc5MhLqPOxEMovdV+qh1bQhsieb7WyX2E9FEMwxMWGVDQfYEEZJvhCQCUl3V1lr7G8dqDOkaJONRN9H1pvzC58D2Q4u/RniHKn97HK5LOjp/0Ug4cLWw/Fa00hl36DplkBQwIWZCA+pXrBkNjAB7q/O/pqe2mkR8uVKdwLtt1+zKN7NtDQwnmYH2iSwgflbeHR3DykbXiEbB8e5AU62drbmMntXFXXtNHvPQ74+GKZXZsL44QpIGEa65en+pMXbKsrrjvv3q0ipc0vRCkf0Kt0161Q4ibdxoIyUz2y5NC5vM8xepX2DYQ2yO1dFcI4y3VsZjm8jtae+fjVxUETZQmbj1b1DhnMQhuDXxh8l7U+pWP1OVhocrTH+i6d8qk/RaVYQxjQeOafsOVsxFjYTm6syX7hn3+CKWKGZW59WbVRc+f58G4x8=
distributions: sdist bdist_wheel
on:
branch: master
condition: ${STREAMFLOW_VERSION} != $(pip search streamflow | grep -oP "(?<=^streamflow \()(.*)(?=\))")
condition: ${STREAMFLOW_VERSION} != $(pip_search streamflow | grep -oP "(?<=^streamflow \()(.*)(?=\))")
edge: true
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ COPY ./streamflow ./Pipfile ./Pipfile.lock /streamflow/

RUN apk --no-cache add \
bash \
cargo \
curl \
g++ \
libffi-dev \
Expand Down
2 changes: 1 addition & 1 deletion streamflow/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = "0.0.23"
VERSION = "0.0.24"

0 comments on commit 41755a3

Please sign in to comment.