Skip to content

Commit 0aa3aa2

Browse files
authored
Merge pull request #36 from dwhswenson/bump-0.2.0.dev0
Bump 0.2.0.dev0
2 parents 29cd0d0 + 5650b49 commit 0aa3aa2

File tree

6 files changed

+17
-8
lines changed

6 files changed

+17
-8
lines changed

.github/workflows/autorelease-default-env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
INSTALL_AUTORELEASE="python -m pip install autorelease==0.2.3"
1+
INSTALL_AUTORELEASE="python -m pip install autorelease==0.2.6"
22
if [ -f autorelease-env.sh ]; then
33
source autorelease-env.sh
44
fi

.github/workflows/autorelease-deploy.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
python-version: "3.x"
1515
- run: | # TODO: move this to an action
1616
source ./.github/workflows/autorelease-default-env.sh
17-
cat autorelease-env.sh >> $GITHUB_ENV
17+
if [ -f "autorelease-env.sh" ]; then
18+
cat autorelease-env.sh >> $GITHUB_ENV
19+
fi
1820
eval $INSTALL_AUTORELEASE
1921
name: "Install autorelease"
2022
- run: |
@@ -27,5 +29,5 @@ jobs:
2729
- uses: pypa/gh-action-pypi-publish@master
2830
with:
2931
password: ${{ secrets.pypi_password }}
30-
name: "Deploy to testpypi"
32+
name: "Deploy to pypi"
3133

.github/workflows/autorelease-gh-rel.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ jobs:
1515
python-version: "3.7"
1616
- run: | # TODO: move this to an action
1717
source ./.github/workflows/autorelease-default-env.sh
18-
cat autorelease-env.sh >> $GITHUB_ENV
18+
if [ -f "autorelease-env.sh" ]; then
19+
cat autorelease-env.sh >> $GITHUB_ENV
20+
fi
1921
eval $INSTALL_AUTORELEASE
2022
name: "Install autorelease"
2123
- run: |

.github/workflows/autorelease-prep.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ jobs:
1919
python-version: "3.x"
2020
- run: | # TODO: move this to an action
2121
source ./.github/workflows/autorelease-default-env.sh
22-
cat autorelease-env.sh >> $GITHUB_ENV
22+
if [ -f "autorelease-env.sh" ]; then
23+
cat autorelease-env.sh >> $GITHUB_ENV
24+
fi
2325
eval $INSTALL_AUTORELEASE
2426
name: "Install autorelease"
2527
- run: |
@@ -49,7 +51,9 @@ jobs:
4951
python-version: "3.x"
5052
- run: | # TODO: move this to an action
5153
source ./.github/workflows/autorelease-default-env.sh
52-
cat autorelease-env.sh >> $GITHUB_ENV
54+
if [ -f "autorelease-env.sh" ]; then
55+
cat autorelease-env.sh >> $GITHUB_ENV
56+
fi
5357
eval $INSTALL_AUTORELEASE
5458
name: "Install autorelease"
5559
- run: test-testpypi

autorelease-env.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
PACKAGE_IMPORT_NAME="paths_cli"
1+
INSTALL_AUTORELEASE="python -m pip install autorelease==0.2.3 nose"
2+
PACKAGE_IMPORT_NAME=paths_cli

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = openpathsampling-cli
3-
version = 0.1.1.dev0
3+
version = 0.2.0.dev0
44
# version should end in .dev0 if this isn't to be released
55
description = Command line tool for OpenPathSampling
66
long_description = file: README.md

0 commit comments

Comments
 (0)