Skip to content

Commit c0727c2

Browse files
committed
💎 release 0.0.7.
1 parent d79f851 commit c0727c2

File tree

8 files changed

+48
-19
lines changed

8 files changed

+48
-19
lines changed

.travis.yml

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
sudo: false
32
dist: xenial
43
language: python
@@ -16,34 +15,53 @@ python:
1615
stages:
1716
- test
1817
- lint
18+
- moban
1919

2020
.disable_global: &disable_global
21+
addons: false
22+
cache: false
23+
env: {}
24+
python: false
2125
before_install: false
22-
install: true
26+
install: false
2327
before_script: false
28+
script: false
2429
after_success: false
2530
after_failure: false
31+
before_deploy: false
32+
deploy: false
2633

2734
.lint: &lint
2835
<<: *disable_global
36+
git:
37+
submodules: false
2938
python: 3.6
3039
stage: lint
3140
install: pip install flake8
3241
script: flake8
3342

43+
.moban: &moban
44+
<<: *disable_global
45+
python: 3.6
46+
stage: moban
47+
install: pip install moban>=0.0.4
48+
script:
49+
- moban
50+
- git diff --exit-code
51+
3452
jobs:
3553
include:
54+
- *moban
3655
- *lint
3756

3857
stage: test
3958

40-
script: make test
41-
4259
before_install:
4360
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
4461
mv min_requirements.txt requirements.txt ;
4562
fi
46-
- test ! -f rnd_requirements.txt || pip install --no-deps -r rnd_requirements.txt
63+
- test ! -f rnd_requirements.txt ||
64+
pip install --no-deps -r rnd_requirements.txt
4765
- test ! -f rnd_requirements.txt || pip install -r rnd_requirements.txt ;
4866
- pip install -r tests/requirements.txt
4967
script:

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Change log
22
================================================================================
33

4+
0.0.7 - 04-05-2019
5+
--------------------------------------------------------------------------------
6+
7+
Updated
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. use pypi-mobans version 0.0.7
11+
412
0.0.5 - 04-05-2019
513
--------------------------------------------------------------------------------
614

changelog.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: "pypi-mobans"
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Updated
6+
details:
7+
- use pypi-mobans version 0.0.7
8+
date: 04-05-2019
9+
version: 0.0.7
410
- changes:
511
- action: Updated
612
details:

docs/source/conf.py

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
copyright = '2018-2019 Onni Software Ltd. and its contributors'
2626
author = 'C.W.'
2727
# The short X.Y version
28-
version = '0.0.5'
28+
version = '0.0.7'
2929
# The full version, including alpha/beta/rc tags
30-
release = '0.0.5'
30+
release = '0.0.7'
3131

3232
# -- General configuration ---------------------------------------------------
3333

@@ -39,9 +39,6 @@
3939
# Add any paths that contain templates here, relative to this directory.
4040
templates_path = ['_templates']
4141

42-
# The master toctree document.
43-
master_doc = ''
44-
4542
# The language for content autogenerated by Sphinx. Refer to documentation
4643
# for a list of supported languages.
4744
#

pypi-mobans-pkg.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ organisation: "moremoban"
33
author: "C.W."
44
55
company: "Onni Software Ltd. and its contributors"
6-
version: "0.0.5"
7-
current_version: "0.0.5"
8-
release: "0.0.5"
6+
version: "0.0.7"
7+
current_version: "0.0.7"
8+
release: "0.0.7"
99
copyright_year: 2018-2019
1010
license: public license
1111
dependencies:

pypi_mobans_pkg/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version__ = "0.0.5"
1+
__version__ = "0.0.7"
22
__author__ = "C.W."

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@
2929

3030
NAME = "pypi-mobans-pkg"
3131
AUTHOR = "C.W."
32-
VERSION = "0.0.5"
32+
VERSION = "0.0.7"
3333
3434
LICENSE = "public license"
3535
DESCRIPTION = (
3636
"Scaffolding mobans for your Python project."
3737
)
3838
URL = "https://github.com/moremoban/pypi-mobans-pkg"
39-
DOWNLOAD_URL = "%s/archive/0.0.5.tar.gz" % URL
39+
DOWNLOAD_URL = "%s/archive/0.0.7.tar.gz" % URL
4040
FILES = ["README.rst", "CHANGELOG.rst"]
4141
KEYWORDS = [
4242
"python",
@@ -70,8 +70,8 @@
7070
}
7171
# You do not need to read beyond this line
7272
PUBLISH_COMMAND = "{0} setup.py sdist bdist_wheel upload -r pypi".format(sys.executable)
73-
GS_COMMAND = ("gs pypi-mobans-pkg v0.0.5 " +
74-
"Find 0.0.5 in changelog for more details")
73+
GS_COMMAND = ("gs pypi-mobans-pkg v0.0.7 " +
74+
"Find 0.0.7 in changelog for more details")
7575
NO_GS_MESSAGE = ("Automatic github release is disabled. " +
7676
"Please install gease to enable it.")
7777
UPLOAD_FAILED_MSG = (

0 commit comments

Comments
 (0)