Skip to content

Commit 9c69939

Browse files
authored
Merge pull request #392 from openworm/release/0.9.0
Release/0.9.0
2 parents 33ebd00 + 2521160 commit 9c69939

File tree

127 files changed

+6107
-19472
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

127 files changed

+6107
-19472
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,6 @@ snakefood
4747
# api docs are generated but housed in the docs/ directory with the handwritten
4848
# kind
4949
docs/api
50+
51+
# pow clone'd databases
52+
.pow/

.travis.yml

+11-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
language: python
2-
python:
3-
- '2.7'
4-
- '3.4'
5-
- '3.6'
2+
matrix:
3+
include:
4+
- python: '3.7'
5+
dist: xenial
6+
sudo: true
7+
- python: '3.6'
8+
- python: '3.4'
9+
- python: '2.7'
610
before_install:
11+
- pip install --upgrade pip
712
- pip install coveralls
8-
- pip install --upgrade pytest>=3.4.0
13+
- pip uninstall pytest --yes
14+
- pip install pytest>=3.4.0
915
install:
1016
- python setup.py install
1117
- pow clone https://github.com/openworm/OpenWormData.git

INSTALL.md

+16-11
Original file line numberDiff line numberDiff line change
@@ -4,36 +4,41 @@ The recommended way to get PyOpenWorm is from [pip](http://pip.readthedocs.org/e
44

55
pip install pyopenworm
66

7-
Alternatively, you can grab the contents from GitHub:
7+
Alternatively, you can grab the latest on the development branch from GitHub:
88

99
git clone https://github.com/openworm/PyOpenWorm.git
1010
cd PyOpenWorm
1111
python setup.py install
1212

13-
Uninstall
14-
----------
15-
16-
pip uninstall PyOpenWorm
17-
1813
Running tests
1914
-------------
2015

2116
After checking out the project, tests can be run from the command line in the root folder with::
2217

23-
py.test
18+
python setup.py test
2419

2520
You may also run individual test cases with::
2621

27-
py.test -k <NameOfTest>
22+
python setup.py test --addopts "-k <NameOfTest>"
23+
24+
For example, where *test_muscles1* is a test in the *WormTest* suite of tests (see tests/WormTest.py)::
2825

29-
For example, where *test_muscles*1 is a test in the *WormTest* suite of tests (see tests/WormTest.py)::
26+
python setup.py test --addopts "-k test_muscles1"
3027

31-
py.test -k test_muscles1
28+
Python 2 support
29+
----------------
30+
Python 2.7 will be supported in PyOpenWorm through Python 2.7 end-of-life in 2020. Subsequent to that, any regressions for 2.7-based applications will only be fixed for the sake of OpenWorm projects.
31+
32+
33+
Uninstall
34+
----------
35+
36+
pip uninstall PyOpenWorm
3237

3338

3439
Optional
3540
--------
36-
There is an optional database storeage option called Sleepycat. You may encounter these issues if you pursue this option:
41+
There is an optional database storage option called Sleepycat. You may encounter these issues if you pursue this option:
3742

3843
If your system does not come with bsddb, you will need to install it. On MacOSX, you can follow
3944
[these instructions](http://stackoverflow.com/questions/16003224/installing-bsddb-package-python) for how to install

LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2014-2016 OpenWorm
3+
Copyright (c) 2014-2019 OpenWorm
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy of
66
this software and associated documentation files (the "Software"), to deal in

OpenWormData/aux_data/C. elegans Cell List - WormAtlas.tsv

-1,357
This file was deleted.

OpenWormData/aux_data/C. elegans Cell List - WormBase.csv

-1,359
This file was deleted.

OpenWormData/aux_data/Ion channels - Ion Channel To Body Muscle.tsv

-61
This file was deleted.

OpenWormData/aux_data/Ion channels - Ion Channel To Neuron.tsv

-61
This file was deleted.

OpenWormData/aux_data/Modified celegans db dump.csv

-2,260
This file was deleted.

OpenWormData/aux_data/NeuroML_Channel.csv

-2
This file was deleted.
-506 KB
Binary file not shown.

OpenWormData/aux_data/README.md

-1
This file was deleted.

OpenWormData/aux_data/bibtex_files/WormAtlas.bib

-6
This file was deleted.

OpenWormData/aux_data/bibtex_files/altun2009.bib

-16
This file was deleted.

OpenWormData/aux_data/bibtex_files/harris2010.bib

-17
This file was deleted.

OpenWormData/aux_data/bibtex_files/rand1997.bib

-10
This file was deleted.

OpenWormData/aux_data/celegans.db

-269 KB
Binary file not shown.

0 commit comments

Comments
 (0)