Skip to content

Commit 5f670b1

Browse files
committed
🥚 🎡 release 0.0.4
1 parent c50c339 commit 5f670b1

File tree

10 files changed

+148
-107
lines changed

10 files changed

+148
-107
lines changed

.gitignore

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ parts/
2525
sdist/
2626
var/
2727
wheels/
28+
pip-wheel-metadata/
29+
share/python-wheels/
2830
*.egg-info/
2931
.installed.cfg
3032
*.egg
@@ -43,6 +45,7 @@ pip-delete-this-directory.txt
4345
# Unit test / coverage reports
4446
htmlcov/
4547
.tox/
48+
.nox/
4649
.coverage
4750
.coverage.*
4851
.cache
@@ -77,9 +80,20 @@ target/
7780
# Jupyter Notebook
7881
.ipynb_checkpoints
7982

83+
# IPython
84+
profile_default/
85+
ipython_config.py
86+
8087
# pyenv
8188
.python-version
8289

90+
# pipenv
91+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
93+
# having no cross-platform support, pipenv may install dependencies that don’t work, or not
94+
# install all needed dependencies.
95+
#Pipfile.lock
96+
8397
# celery beat schedule file
8498
celerybeat-schedule
8599

@@ -107,6 +121,11 @@ venv.bak/
107121

108122
# mypy
109123
.mypy_cache/
124+
.dmypy.json
125+
dmypy.json
126+
127+
# Pyre type checker
128+
.pyre/
110129

111130
# VirtualEnv rules
112131
# Virtualenv
@@ -238,6 +257,10 @@ flycheck_*.el
238257
# directory configuration
239258
.dir-locals.el
240259

260+
# network security
261+
/network-security.data
262+
263+
241264
# Vim rules
242265
# Swap
243266
[._]*.s[a-v][a-z]
@@ -268,6 +291,9 @@ tags
268291
.idea/**/dictionaries
269292
.idea/**/shelf
270293

294+
# Generated files
295+
.idea/**/contentModel.xml
296+
271297
# Sensitive or high-churn files
272298
.idea/**/dataSources/
273299
.idea/**/dataSources.ids
@@ -281,6 +307,14 @@ tags
281307
.idea/**/gradle.xml
282308
.idea/**/libraries
283309

310+
# Gradle and Maven with auto-import
311+
# When using Gradle or Maven with auto-import, you should exclude module files,
312+
# since they will be recreated, and may cause churn. Uncomment if using
313+
# auto-import.
314+
# .idea/modules.xml
315+
# .idea/*.iml
316+
# .idea/modules
317+
284318
# CMake
285319
cmake-build-*/
286320

@@ -311,6 +345,9 @@ fabric.properties
311345
# Editor-based Rest Client
312346
.idea/httpRequests
313347

348+
# Android studio 3.1+ serialized cache file
349+
.idea/caches/build_file_checksums.ser
350+
314351
# SublimeText rules
315352
# Cache files for Sublime Text
316353
*.tmlanguage.cache
@@ -390,7 +427,6 @@ DerivedData/
390427
!default.perspectivev3
391428

392429
# Eclipse rules
393-
394430
.metadata
395431
bin/
396432
tmp/

.travis.yml

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,45 @@
1+
12
sudo: false
3+
dist: xenial
24
language: python
35
notifications:
46
email: false
57
python:
6-
- pypy-5.3.1
7-
- 3.7-dev
8+
- &pypy2 pypy2.7-6.0
9+
- &pypy3 pypy3.5-6.0
10+
- 3.8-dev
11+
- 3.7
812
- 3.6
913
- 3.5
10-
- 3.4
1114
- 2.7
15+
16+
stages:
17+
- test
18+
- lint
19+
20+
.disable_global: &disable_global
21+
before_install: false
22+
install: true
23+
before_script: false
24+
after_success: false
25+
after_failure: false
26+
27+
.lint: &lint
28+
<<: *disable_global
29+
python: 3.6
30+
stage: lint
31+
install: pip install flake8
32+
script: flake8
33+
34+
jobs:
35+
include:
36+
- *lint
37+
38+
stage: test
39+
40+
script: make test
41+
1242
before_install:
13-
- if [[ $TRAVIS_PYTHON_VERSION == "2.6" ]]; then pip install flake8==2.6.2; fi
1443
- if [[ -f min_requirements.txt && "$MINREQ" -eq 1 ]]; then
1544
mv min_requirements.txt requirements.txt ;
1645
fi

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.4 - 04-05-2019
5+
--------------------------------------------------------------------------------
6+
7+
Updated
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. use pypi-mobans version 0.0.4 and 0.0.5
11+
412
0.0.3 - 08-11-2018
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.4 and 0.0.5
8+
date: 04-05-2019
9+
version: 0.0.4
410
- changes:
511
- action: Updated
612
details:

docs/source/conf.py

Lines changed: 5 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,13 @@
2121

2222
# -- Project information -----------------------------------------------------
2323

24-
project = ''
25-
copyright = ''
26-
author = 'Onni Software Ltd. and its contributors'
27-
24+
project = 'pypi-mobans-pkg'
25+
copyright = '2018-2019 Onni Software Ltd. and its contributors'
26+
author = 'C.W.'
2827
# The short X.Y version
29-
version = '0.0.2.1'
28+
version = '0.0.4'
3029
# The full version, including alpha/beta/rc tags
31-
release = '0.0.2.1'
32-
30+
release = '0.0.4'
3331

3432
# -- General configuration ---------------------------------------------------
3533

@@ -41,12 +39,6 @@
4139
# Add any paths that contain templates here, relative to this directory.
4240
templates_path = ['_templates']
4341

44-
# The suffix(es) of source filenames.
45-
# You can specify multiple suffix as a list of string:
46-
#
47-
# source_suffix = ['.rst', '.md']
48-
source_suffix = '.rst'
49-
5042
# The master toctree document.
5143
master_doc = ''
5244

@@ -70,51 +62,16 @@
7062
#
7163
html_theme = 'alabaster'
7264

73-
# Theme options are theme-specific and customize the look and feel of a theme
74-
# further. For a list of options available for each theme, see the
75-
# documentation.
76-
#
77-
# html_theme_options = {}
78-
7965
# Add any paths that contain custom static files (such as style sheets) here,
8066
# relative to this directory. They are copied after the builtin static files,
8167
# so a file named "default.css" will overwrite the builtin "default.css".
8268
html_static_path = ['_static']
8369

84-
# Custom sidebar templates, must be a dictionary that maps document names
85-
# to template names.
86-
#
87-
# The default sidebars (for documents that don't match any pattern) are
88-
# defined by theme itself. Builtin themes are using these templates by
89-
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
90-
# 'searchbox.html']``.
91-
#
92-
# html_sidebars = {}
93-
94-
95-
# -- Options for Epub output -------------------------------------------------
96-
97-
# Bibliographic Dublin Core info.
98-
epub_title = project
99-
100-
# The unique identifier of the text. This can be a ISBN number
101-
# or the project homepage.
102-
#
103-
# epub_identifier = ''
104-
105-
# A unique identification for the text.
106-
#
107-
# epub_uid = ''
108-
109-
# A list of files that should not be packed into the epub file.
110-
epub_exclude_files = ['search.html']
111-
11270
# -- Extension configuration -------------------------------------------------
11371
# -- Options for intersphinx extension ---------------------------------------
11472

11573
# Example configuration for intersphinx: refer to the Python standard library.
11674
intersphinx_mapping = {'https://docs.python.org/': None}
117-
11875
# TODO: html_theme not configurable upstream
11976
html_theme = 'default'
12077

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.3"
7-
current_version: "0.0.3"
8-
release: "0.0.3"
6+
version: "0.0.4"
7+
current_version: "0.0.4"
8+
release: "0.0.4"
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.3"
1+
__version__ = "0.0.4"
22
__author__ = "C.W."

0 commit comments

Comments
 (0)