Skip to content

Commit

Permalink
Merge pull request #57 from compbiocore/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
fernandogelin authored May 31, 2019
2 parents 56c0824 + fb45af2 commit cffec2b
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 29 deletions.
50 changes: 33 additions & 17 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,36 @@ matrix:
os: linux
julia: 1.1
script:
- julia -e 'import Pkg; Pkg.instantiate(); Pkg.add("Documenter"); include(joinpath("docs", "make.jl"))'

- stage: semantic release
if: branch = master AND type != pull_request
language: python
os: linux
python: 3.6
before_script: skip
install:
- pip install typing
- pip install python-semantic-release
script:
- git config --global user.name "semantic-release (via TravisCI)"
- git config --global user.email "semantic-release@travis"
- semantic-release publish
after_script: skip
after_success: skip
- julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
- julia --project=docs/ docs/make.jl
# - stage: semantic release
# if: branch = master AND type != pull_request
# language: python
# os: linux
# python: 3.6
# before_script: skip
# install:
# - pip install typing
# - pip install python-semantic-release
# script:
# - git config --global user.name "semantic-release (via TravisCI)"
# - git config --global user.email "semantic-release@travis"
# - semantic-release publish
# after_script: skip
# after_success: skip
#
# - stage: Pre-release
# if: branch = pre-release
# language: python
# os: linux
# python: 3.6
# before_script: skip
# install:
# - pip install typing
# - pip install python-semantic-release
# script:
# - git config --global user.name "semantic-release (via TravisCI)"
# - git config --global user.email "semantic-release@travis"
# - semantic-release version
# after_script: skip
# after_success: skip
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ ArgParse = "c7e460c6-2fb9-53a9-8c5b-16f535851c63"
Blink = "ad839575-38b3-5650-b840-f874b8c74a25"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
DelimitedFiles = "8bb1440f-4735-579b-a4ab-409b98df4dab"
DocumenterMarkdown = "997ab1e6-3595-5248-9280-8efb232c3433"
GeneticVariation = "9bc6ac9d-e6b2-5f70-b0a8-242a01662520"
ORCA = "47be7bcc-f1a6-5447-8b36-7eeeff7534fd"
PlotlyJS = "f0f68f2c-4968-5e81-91da-67840de0976a"
Expand Down
11 changes: 0 additions & 11 deletions REQUIRE

This file was deleted.

2 comments on commit cffec2b

@fernandogelin
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/1103

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.3.7 -m "<description of version>" cffec2b5e4543177d060c57ba46f9a730cebd115
git push origin v0.3.7

Also, note the warning: Version 0.3.7 skips over 0.3.6
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.