Skip to content

Commit

Permalink
fix: fixed description in Python package
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Mar 1, 2022
1 parent fbb0c9b commit 500a699
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,22 @@ jobs:
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools
# convert README.md to RST for PyPI
- name: Install pandoc
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends wget
wget https://github.com/jgm/pandoc/releases -O /tmp/pandocVersions.html
urlPart=`grep "\.deb" /tmp/pandocVersions.html | head -n 1 | cut -d'/' -f2-7 | cut -d'"' -f1`
wget "https://github.com/$urlPart" -O /tmp/pandoc.deb
sudo dpkg -i /tmp/pandoc.deb
rm /tmp/pandocVersions.html
rm /tmp/pandoc.deb
- name: Convert README to .rst format
run: pandoc --from=gfm --output=README.rst --to=rst README.md

# compile package
- name: Install twine
run: |
Expand All @@ -129,22 +145,6 @@ jobs:
mkdir -p docs-src/_static
sphinx-build docs-src docs
# convert README.md to RST for PyPI
- name: Install pandoc
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends wget
wget https://github.com/jgm/pandoc/releases -O /tmp/pandocVersions.html
urlPart=`grep "\.deb" /tmp/pandocVersions.html | head -n 1 | cut -d'/' -f2-7 | cut -d'"' -f1`
wget "https://github.com/$urlPart" -O /tmp/pandoc.deb
sudo dpkg -i /tmp/pandoc.deb
rm /tmp/pandocVersions.html
rm /tmp/pandoc.deb
- name: Convert README to .rst format
run: pandoc --from=gfm --output=README.rst --to=rst README.md

########## Release
# get version number
- id: get-version-number
Expand Down
2 changes: 1 addition & 1 deletion biosimulations_bigg/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.0.4'
__version__ = '0.0.5'

0 comments on commit 500a699

Please sign in to comment.