Skip to content

Commit 3335afb

Browse files
authored
Merge pull request #212 from CESNET/pytraprelease
pytrap: increased version, released package
2 parents 44181e1 + 0c24bfd commit 3335afb

File tree

3 files changed

+5
-10
lines changed

3 files changed

+5
-10
lines changed

pycommon/README-RPM-release.md

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,15 @@
88
```
99

1010
3. create python src package using `python setup.py sdist`
11-
4. sign package(s) in `dist/` using:
1211

13-
```
14-
for i in *; do gpg2 --detach-sign -a "$i"; done
15-
```
16-
17-
5. upload files in `dist/` using `twine`:
12+
4. upload files in `dist/` using `twine`:
1813

1914
```
2015
twine upload ./*
2116
```
2217

23-
6. run `make rpm`
24-
7. your packages are in `RPMBUILD/`, build for other RPM-based systems can be done using:
18+
5. run `make rpm`
19+
6. your packages are in `RPMBUILD/`, build for other RPM-based systems can be done using:
2520

2621
```
2722
copr build @CESNET/NEMEA RPMBUILD/SRPMS/<package.src.rpm>

pytrap/nemea-pytrap.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
%endif
77

88
Name: %{pypi_name}
9-
Version: 0.15.0
9+
Version: 0.16.0
1010
Release: 1%{?dist}
1111
Summary: Python extension of the NEMEA project
1212

pytrap/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
SRC_PATH = os.path.relpath(os.path.join(os.path.dirname(__file__), ".", "src"))
55

66
name = 'nemea-pytrap'
7-
version = '0.15.0'
7+
version = '0.16.0'
88
release = version
99
description = 'Python extension of the NEMEA project.'
1010
long_description = 'The pytrap module is a native Python extension that allows for writing NEMEA modules in Python.'

0 commit comments

Comments
 (0)