Skip to content

Commit 0e5913a

Browse files
committed
Merge master into release/1
--HG-- branch : release
2 parents ec0418b + 1940061 commit 0e5913a

File tree

7 files changed

+77
-65
lines changed

7 files changed

+77
-65
lines changed

.gitignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
**/nbproject/private
21
dist
32
build
4-
**/.eggs/
5-
**/*.egg-info/
6-
**/__pycache__/
3+
.eggs
4+
*.egg-info
75
*.pyc
86
*.rej
97
*.orig

.hgignore

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
syntax: regexp
2-
(^|/)nbproject/private$
32
(^|/)dist$
43
(^|/)build$
5-
(^|/)\.eggs/
6-
\.egg-info/
7-
(^|/)__pycache__/
4+
(^|/)\.eggs$
5+
\.egg-info$
86
\.pyc$
97
\.rej$
108
\.orig$

.hgtags

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
91d2ec54cf909ab56b0de299730171fbe1a18226 release/1a1

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
include COPYING

README.md

Lines changed: 20 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,26 @@
1-
This file documents the hgext3rd.convertprcs package for Python.
2-
31
# Introduction
42

5-
This directory contains the source code for the
6-
[PRCS](http://prcs.sourceforge.net/) source add-on for the [Convert
7-
extension](http://mercurial.selenic.com/wiki/ConvertExtension) of
8-
[Mercurial](http://mercurial.selenic.com/).
3+
The `hg-convert-prcs-extension` package adds the [PRCS][] source to the
4+
[convert extension][] for [Mercurial][].
5+
6+
[PRCS]: http://prcs.sourceforge.net/
7+
[Mercurial]: https://www.mercurial-scm.org/
8+
[convert extension]: https://www.mercurial-scm.org/wiki/ConvertExtension
9+
10+
[![(Issues)](https://img.shields.io/bitbucket/issues/kazssym/hg-convert-prcs-extension.svg)][open issues]
11+
12+
[open issues]: https://bitbucket.org/kazssym/hg-convert-prcs-extension/issues?status=new&status=open
13+
14+
# License
15+
16+
This program is provided under the terms and conditions of the
17+
[GNU General Public License, version 3][GPL-3.0] or any later version.
18+
19+
[![(License)](https://img.shields.io/badge/license-GPL--3.0--or--later-blue.svg)][GPL-3.0]
20+
21+
[GPL-3.0]: https://opensource.org/licenses/GPL-3.0 "GNU General Public License, version 3"
922

10-
## Required software
23+
# Required software
1124

1225
This extension requires the following software:
1326

azure-pipelines.yml

Lines changed: 48 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -5,51 +5,51 @@
55
# permitted in any medium without royalty provided the copyright notice and
66
# this notice are preserved. This file is offered as-is, without any warranty.
77
---
8-
trigger:
9-
- master
10-
- release/**
11-
- feature/**
12-
stages:
13-
- stage: Default
14-
jobs:
15-
- job: Build
16-
pool:
17-
vmImage: ubuntu-latest
18-
steps:
19-
- task: UsePythonVersion@0
20-
- bash: |
21-
pip install "setuptools>=38.6" wheel
22-
displayName: Install dependencies
23-
- bash: |
24-
python ./setup.py test
25-
displayName: Test
26-
- task: PublishTestResults@2
27-
- bash: |
28-
python ./setup.py sdist bdist_wheel
29-
displayName: Create archives
30-
- publish: dist
31-
artifact: dist
32-
- stage: Release
33-
condition: >-
34-
and(succeeded(),
35-
startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'))
36-
jobs:
37-
- job: Upload
38-
displayName: Upload to PyPI
39-
pool:
40-
vmImage: ubuntu-latest
41-
steps:
42-
- checkout: none
43-
- download: current
44-
artifact: dist
45-
- task: UsePythonVersion@0
46-
- bash: |
47-
pip install twine
48-
displayName: Install dependencies
49-
- task: TwineAuthenticate@1
50-
inputs:
51-
pythonUploadServiceConnection: pypi
52-
- bash: |
53-
twine upload -r pypi --config-file $(PYPIRC_PATH) \
54-
$(Pipeline.Workspace)/dist/*
55-
displayName: Upload
8+
trigger:
9+
- master
10+
- release/*
11+
- feature/*
12+
stages:
13+
- stage: Default
14+
jobs:
15+
- job: Build
16+
pool:
17+
vmImage: ubuntu-latest
18+
steps:
19+
- task: UsePythonVersion@0
20+
- bash: |
21+
pip install "setuptools>=38.6" wheel
22+
displayName: Install dependencies
23+
- bash: |
24+
python ./setup.py test
25+
displayName: Test
26+
- task: PublishTestResults@2
27+
- bash: |
28+
python ./setup.py sdist bdist_wheel
29+
displayName: Create archives
30+
- publish: dist
31+
artifact: dist
32+
- stage: Release
33+
condition: >-
34+
and(succeeded(),
35+
startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'))
36+
jobs:
37+
- job: Upload
38+
displayName: Upload to PyPI
39+
pool:
40+
vmImage: ubuntu-latest
41+
steps:
42+
- checkout: none
43+
- download: current
44+
artifact: dist
45+
- task: UsePythonVersion@0
46+
- bash: |
47+
pip install twine
48+
displayName: Install dependencies
49+
- task: TwineAuthenticate@1
50+
inputs:
51+
pythonUploadServiceConnection: pypi
52+
- bash: |
53+
twine upload -r pypi --config-file $(PYPIRC_PATH) \
54+
$(Pipeline.Workspace)/dist/*
55+
displayName: Upload

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
from setuptools import setup
2525

2626
# Package version.
27-
PACKAGE_VERSION = "1a1"
27+
PACKAGE_VERSION = "1a2"
2828

2929
def long_description():
3030
"""
@@ -56,8 +56,9 @@ def long_description():
5656
python_requires=">=2.7",
5757
install_requires=[
5858
"mercurial>=4.7",
59-
"prcslib>=1.0b4"
59+
"prcslib>=1.0"
6060
],
61+
zip_safe=True,
6162

6263
packages=[
6364
"hgext3rd.convert_prcs"

0 commit comments

Comments
 (0)