Skip to content

Commit 6d7cc29

Browse files
pyup-botDEKHTIARJonathan
authored andcommitted
Config file for pyup.io (#523)
* create pyup.io config file * Update .pyup.yml * Update README.md
1 parent 15f3bea commit 6d7cc29

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

.pyup.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
############################################################################
2+
# see https://pyup.io/docs/configuration/ for all available options #
3+
############################################################################
4+
5+
# configure updates globally
6+
# default: all
7+
# allowed: all, insecure, False
8+
update: all
9+
10+
# configure dependency pinning globally
11+
# default: True
12+
# allowed: True, False
13+
pin: False
14+
15+
# set the default branch
16+
# default: empty, the default branch on GitHub
17+
branch: master
18+
19+
# update schedule
20+
# default: empty
21+
# allowed: "every day", "every week", ..
22+
schedule: "every day"
23+
24+
# search for requirement files
25+
# default: True
26+
# allowed: True, False
27+
search: False
28+
29+
# Specify requirement files by hand, default is empty
30+
# default: empty
31+
# allowed: list
32+
requirements:
33+
# Requirements for the library
34+
- requirements.txt
35+
36+
# Requirements for the development
37+
- requirements_dev.txt
38+
39+
# Requirements for running unittests
40+
- tests/requirements.txt
41+
42+
# Requirements for building docs
43+
- docs/requirements.txt
44+
45+
# add a label to pull requests, default is not set
46+
# requires private repo permissions, even on public repos
47+
# default: empty
48+
#label_prs: update
49+
50+
# configure the branch prefix the bot is using
51+
# default: pyup-
52+
branch_prefix: pyup-
53+
54+
# set a global prefix for PRs
55+
# default: empty
56+
pr_prefix: "PyUP - Dependency Update"
57+
58+
# allow to close stale PRs
59+
# default: True
60+
close_prs: True

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
[![Build Status](https://travis-ci.org/tensorlayer/tensorlayer.svg?branch=master)](https://travis-ci.org/tensorlayer/tensorlayer)
2020
[![Documentation Status](https://readthedocs.org/projects/tensorlayer/badge/?version=latest)](http://tensorlayer.readthedocs.io/en/latest/?badge=latest)
2121
[![Docker Pulls](https://img.shields.io/docker/pulls/tensorlayer/tensorlayer.svg?maxAge=604800)](https://hub.docker.com/r/tensorlayer/tensorlayer/)
22+
[![PyUP Updates](https://pyup.io/repos/github/tensorlayer/tensorlayer/shield.svg)](https://pyup.io/repos/github/tensorlayer/tensorlayer/)
23+
[![Python 3](https://pyup.io/repos/github/tensorlayer/tensorlayer/python-3-shield.svg)](https://pyup.io/repos/github/tensorlayer/tensorlayer/)
2224

2325
TensorLayer is a deep learning and reinforcement learning library on top of [TensorFlow](https://www.tensorflow.org). It provides rich neural layers and utility functions to help researchers and engineers build real-world AI applications. TensorLayer is awarded the 2017 Best Open Source Software by the prestigious [ACM Multimedia Society](http://www.acmmm.org/2017/mm-2017-awardees/).
2426

0 commit comments

Comments
 (0)