Skip to content

Commit 937ae40

Browse files
committed
Merge branch 'dev'
2 parents b571366 + 90406e1 commit 937ae40

File tree

5 files changed

+39
-8
lines changed

5 files changed

+39
-8
lines changed

.github/workflows/build.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: build
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Set up Python 3.9
12+
uses: actions/setup-python@v2
13+
with:
14+
python-version: "3.9"
15+
- name: Install dependencies
16+
run: |
17+
python -m pip install --upgrade pip
18+
pip install pytest pytest-cov coveralls
19+
pip install dna_features_viewer
20+
- name: Install
21+
run: |
22+
pip install -e .
23+
- name: Test with pytest
24+
run: |
25+
python -m pytest --cov crazydoc --cov-report term-missing
26+
- name: Coveralls
27+
run: coveralls
28+
env:
29+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30+
COVERALLS_SERVICE_NAME: github

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: python
22
python:
3-
- "3.6"
3+
- "3.9"
44
# command to install dependencies
55
install:
66
- pip install coveralls pytest-cov pytest dna_features_viewer

README.rst

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
<br /><br />
66
</p>
77

8-
.. image:: https://travis-ci.org/Edinburgh-Genome-Foundry/crazydoc.svg?branch=master
9-
:target: https://travis-ci.org/Edinburgh-Genome-Foundry/crazydoc
10-
:alt: Travis CI build status
8+
9+
.. image:: https://github.com/Edinburgh-Genome-Foundry/crazydoc/actions/workflows/build.yml/badge.svg
10+
:target: https://github.com/Edinburgh-Genome-Foundry/crazydoc/actions/workflows/build.yml
11+
:alt: GitHub CI build status
1112

1213
.. image:: https://coveralls.io/repos/github/Edinburgh-Genome-Foundry/crazydoc/badge.svg?branch=master
1314
:target: https://coveralls.io/github/Edinburgh-Genome-Foundry/crazydoc?branch=master
@@ -91,13 +92,13 @@ You can install crazydoc through PIP:
9192

9293
.. code::
9394
94-
sudo pip install crazydoc
95+
pip install crazydoc
9596
9697
Alternatively, you can unzip the sources in a folder and type:
9798

9899
.. code::
99100
100-
sudo python setup.py install
101+
python setup.py install
101102
102103
License = MIT
103104
-------------

crazydoc/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.4"
1+
__version__ = "0.1.5"

pypi-readme.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CrazyDoc
2-
============
2+
========
33

44
Crazydoc is a Python library to parse one of the most common DNA representation formats: the joyfully coloured and stylishly annotated MS-Word document.
55

0 commit comments

Comments
 (0)