Skip to content

Commit 53ea91a

Browse files
authored
Merge pull request #380 from moremoban/dev
release 0.7.4
2 parents e8bd2e0 + 10ba852 commit 53ea91a

File tree

20 files changed

+67
-45
lines changed

20 files changed

+67
-45
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
python-version: [3.6, 3.7]
12+
python-version: [3.6, 3.7, 3.8]
1313

1414
steps:
1515
- uses: actions/checkout@v1

.gitignore

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ parts/
2525
sdist/
2626
var/
2727
wheels/
28-
pip-wheel-metadata/
2928
share/python-wheels/
3029
*.egg-info/
3130
.installed.cfg
@@ -143,10 +142,6 @@ dmypy.json
143142
# Cython debug symbols
144143
cython_debug/
145144

146-
# static files generated from Django application using `collectstatic`
147-
media
148-
static
149-
150145
# VirtualEnv rules
151146
# Virtualenv
152147
# http://iamzed.com/2009/05/07/a-primer-on-virtualenv/
@@ -431,6 +426,9 @@ tmtags
431426
!.vscode/extensions.json
432427
*.code-workspace
433428

429+
# Local History for Visual Studio Code
430+
.history/
431+
434432
# Xcode rules
435433
# Xcode
436434
#

.moban.cd/changelog.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: moban
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Fixed
6+
details:
7+
- "`#378`: suppress stdout message from deprecated pip install.
8+
but please do not use and migrate deprecated`requires` syntax."
9+
date: 13.5.2020
10+
version: 0.7.4
411
- changes:
512
- action: Added
613
details:

.moban.cd/moban.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ organisation: moremoban
44
author: C. W.
55
66
license: MIT
7-
version: 0.7.3
8-
current_version: 0.7.3
9-
release: 0.7.3
7+
version: 0.7.4
8+
current_version: 0.7.4
9+
release: 0.7.4
1010
branch: master
1111
master: index
1212
command_line_interface: "moban"
@@ -18,7 +18,6 @@ keywords:
1818
- jinja2
1919
- moban
2020
dependencies:
21-
- ruamel.yaml>=0.15.5,<=0.15.94;python_version == '3.4'
2221
- ruamel.yaml>=0.15.42;python_version == '3.7'
2322
- ruamel.yaml>=0.15.5;python_version != '3.4' and python_version < '3.7'
2423
- ruamel.yaml>=0.15.98;python_version == '3.8'
@@ -35,3 +34,4 @@ moban_command: make update git-diff-check
3534
setup_use_markers: true
3635
setup_use_markers_fix: true
3736
python_requires: ">=3.6"
37+
min_python_version: "3.6"

.moban.d/moban_travis.yml.jj2

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
{%block extra_matrix %}
44
env:
5-
- MINREQ=0
65
- MINREQ=1
76
{%endblock%}
87

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ python:
88
- 3.6
99
- 3.8
1010
env:
11-
- MINREQ=0
1211
- MINREQ=1
1312

1413
stages:
@@ -21,11 +20,15 @@ stages:
2120
git:
2221
submodules: false
2322
python: 3.6
23+
env:
24+
- MINREQ=0
2425
stage: lint
2526
script: make install_test format git-diff-check lint
2627

2728
.moban: &moban
2829
python: 3.6
30+
env:
31+
- MINREQ=0
2932
stage: moban
3033
install: pip install moban>=0.0.4 gitfs2 pypifs
3134
script: make update git-diff-check

CHANGELOG.rst

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

4+
0.7.4 - 13.5.2020
5+
--------------------------------------------------------------------------------
6+
7+
**Fixed**
8+
9+
#. `#378 <https://github.com/moremoban/moban/issues/378>`_: suppress stdout
10+
message from deprecated pip install. but please do not use and migrate
11+
deprecated`requires` syntax.
12+
413
0.7.3 - 2.5.2020
514
--------------------------------------------------------------------------------
615

docs/conf.py

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

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

min_requirements.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
ruamel.yaml==0.15.5;python_version == '3.4'
21
ruamel.yaml==0.15.42;python_version == '3.7'
32
ruamel.yaml==0.15.5;python_version != '3.4' and python_version < '3.7'
43
ruamel.yaml==0.15.98;python_version == '3.8'

moban/_version.py

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

0 commit comments

Comments
 (0)