File tree Expand file tree Collapse file tree 3 files changed +30
-4
lines changed Expand file tree Collapse file tree 3 files changed +30
-4
lines changed Original file line number Diff line number Diff line change @@ -2,8 +2,8 @@ language: python
2
2
matrix :
3
3
include :
4
4
- os : linux
5
- sudo : required
6
- python : 3.6
5
+ sudo : required
6
+ python : 3.6
7
7
- os : linux
8
8
sudo : required
9
9
python : 3.7
Original file line number Diff line number Diff line change 1
1
[ ![ PyPI version] ( https://badge.fury.io/py/fbc_curation.svg )] ( https://badge.fury.io/py/fbc_curation )
2
2
[ ![ GitHub version] ( https://badge.fury.io/gh/matthiaskoenig%2Ffbc_curation.svg )] ( https://badge.fury.io/gh/matthiaskoenig%2Ffbc_curation )
3
- [ ![ Build Status] ( https://travis-ci.org/matthiaskoenig/fbc_curation.svg?branch=master )] ( https://travis-ci.org/matthiaskoenig/fbc_curation )
4
- [ ![ codecov] ( https://codecov.io/gh/matthiaskoenig/fbc_curation/branch/master /graph/badge.svg )] ( https://codecov.io/gh/matthiaskoenig/fbc_curation )
3
+ [ ![ Build Status] ( https://travis-ci.org/matthiaskoenig/fbc_curation.svg?branch=develop )] ( https://travis-ci.org/matthiaskoenig/fbc_curation )
4
+ [ ![ codecov] ( https://codecov.io/gh/matthiaskoenig/fbc_curation/branch/develop /graph/badge.svg )] ( https://codecov.io/gh/matthiaskoenig/fbc_curation )
5
5
[ ![ License (LGPL version 3)] ( https://img.shields.io/badge/license-LGPLv3.0-blue.svg?style=flat-square )] ( http://opensource.org/licenses/LGPL-3.0 )
6
6
7
7
# fbc_curation
Original file line number Diff line number Diff line change
1
+ # Release info
2
+ Steps for release are
3
+ ## github release
4
+ * github: close and update issues/milestone
5
+ * update version number in develop branch
6
+ * make sure all tests run (` pytest ` )
7
+ * add changes to README changelog section
8
+ * github: merge all develop changes to master via pull request
9
+ * github: create release from master branch
10
+
11
+ ## pypi
12
+ * release on [ pypi] ( https://pypi.python.org/pypi/fbc_curation )
13
+ ```
14
+ git branch master
15
+ git pull
16
+ python setup.py sdist
17
+ twine upload dist/*
18
+ ```
19
+ * test installation in virtualenv from pypi
20
+ ```
21
+ mkvirtualenv test --python=python3.7
22
+ (test) pip install fbc_curation
23
+ ```
24
+
25
+ ## version bump
26
+ * switch to develop branch and increase version number
You can’t perform that action at this time.
0 commit comments