Skip to content

Commit c7a6352

Browse files
authored
Merge pull request #316 from mpsonntag/yamlUpgrade
pyyaml dependency upgrade
2 parents 2037840 + f855f9b commit c7a6352

File tree

4 files changed

+6
-8
lines changed

4 files changed

+6
-8
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ matrix:
88
- os: linux
99
python: "2.7"
1010
env: COVERALLS=1
11-
- os: linux
12-
python: "3.4"
1311
- os: linux
1412
python: "3.5"
1513
- os: linux
@@ -55,7 +53,7 @@ install:
5553
export PIPCMD=pip;
5654
fi;
5755

58-
- $PIPCMD install lxml enum34 pyyaml rdflib
56+
- $PIPCMD install lxml enum34 pyyaml==4.2b4 rdflib
5957

6058
script:
6159
- which $PYCMD

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Governance model
99

1010
The project has a core team of **maintainers** who are long-term contributors and responsible for coordinating the project. There is also a set of one-time or short period **contributors**. We consider everyone a contributor who reports issues, opens pull requests, or takes part in issue discussions. Any such contribution is welcome. Maintainers have commit access to the repository and will review and merge pull requests. Becoming a maintainer is possible for everyone who wants to help maintaining and shaping the project and to take over more responsibility. Requests to become a maintainer need to be approved by the existing maintainers.
1111

12-
Any addition to the code happens via pull requests (there are only very few exceptions in which someone pushes directly to master, see below for more information). Thus, any contribution will be reviewed before it is merged. Bug fixes and other contributions to the API will undergo this pragmatic approach. Format or API changes, especially those that would lead to breaking changes, will be discussed via the issue tracker and video meetings and need to be agreed on by the maintainters. We aim at consensus decisions, but where this is not possible decisions are made by majority vote among the maintainers.
12+
Any addition to the code happens via pull requests (there are only very few exceptions in which someone pushes directly to master, see below for more information). Thus, any contribution will be reviewed before it is merged. Bug fixes and other contributions to the API will undergo this pragmatic approach. Format or API changes, especially those that would lead to breaking changes, will be discussed via the issue tracker and video meetings and need to be agreed on by the maintainers. We aim at consensus decisions, but where this is not possible decisions are made by majority vote among the maintainers.
1313

1414

1515
Contributing
@@ -67,12 +67,12 @@ Each pull request that passes all builds and tests should be reviewed by at leas
6767
If a contribution is rather complex or leads to significant API changes, the respective pull request should be
6868
reviewed by two other developers.
6969
In such cases the first reviewer or the contributor should request a second review in a comment.
70-
70+
To streamline the review process reviewers are encouraged to use the github "review" option.
7171

7272
Testing
7373
-------
7474

75-
* Unit test can be found in the test sub directory. Currently, the test coverage is a bit low but we are working on improving it.
75+
* Unit tests can be found in the test sub directory. Currently, the test coverage is a bit low but we are working on improving it.
7676

7777
* Provide a unit test for every class, method or function.
7878

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
![Travis build](https://travis-ci.org/G-Node/python-odml.svg?branch=master)
2-
![Appveyor](https://ci.appveyor.com/api/projects/status/2wfvsu7boe18kwjy?svg=true)
2+
[![Build status](https://ci.appveyor.com/api/projects/status/br7pe6atlwdg5618/branch/master?svg=true)](https://ci.appveyor.com/project/G-Node/python-odml/branch/master)
33
![Test coverage](https://coveralls.io/repos/github/G-Node/python-odml/badge.svg?branch=master)
44

55
# odML (Open metaData Markup Language) core library

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
with open('README.md') as f:
2929
description_text = f.read()
3030

31-
install_req = ["lxml", "pyyaml==3.13", "rdflib", "docopt", "pathlib"]
31+
install_req = ["lxml", "pyyaml==4.2b4", "rdflib", "docopt", "pathlib"]
3232

3333
if sys.version_info < (3, 4):
3434
install_req += ["enum34"]

0 commit comments

Comments
 (0)