Skip to content

Commit

Permalink
Merge pull request #122 from ARGOeu/devel
Browse files Browse the repository at this point in the history
Version 0.5.4
  • Loading branch information
themiszamani authored Oct 8, 2020
2 parents 510c2a0 + c18ac1a commit a6ff8c5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.5.4] - 2020-10-08

### FIXED

ARGO-2592 ams-library py2 RPM also packages py3 specific modules

## [0.5.3] - 2020-09-08

### FIXED
Expand Down
14 changes: 8 additions & 6 deletions argo-ams-library.spec
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

Name: argo-ams-library
Summary: %{sum}
Version: 0.5.3
Version: 0.5.4
Release: 1%{?dist}

Group: Development/Libraries
Expand Down Expand Up @@ -76,25 +76,27 @@ AutoReq: no

%install
rm -rf %{buildroot}
%{py_install "--record=INSTALLED_FILES" }
%{py3_install "--record=INSTALLED_FILES" }
%{py_install "--record=INSTALLED_FILES_PY2" }
%{py3_install "--record=INSTALLED_FILES_PY3" }


%files -n python%{python3_pkgversion}-%{name} -f INSTALLED_FILES
%files -n python%{python3_pkgversion}-%{name} -f INSTALLED_FILES_PY3
%doc examples/ README.md
%defattr(-,root,root,-)
%{python3_sitelib}/*
%if 0%{?el7}
%files -n python-%{name} -f INSTALLED_FILES
%files -n python-%{name} -f INSTALLED_FILES_PY2
%else
%files -n python2-%{name} -f INSTALLED_FILES
%files -n python2-%{name} -f INSTALLED_FILES_PY2
%endif
%doc examples/ README.md
%defattr(-,root,root,-)
%{python_sitelib}/*


%changelog
* Thu Oct 8 2020 Daniel Vrcic <[email protected]> - 0.5.4-1%{?dist}
- ARGO-2592 ams-library py2 RPM also packages py3 specific modules
* Tue Sep 8 2020 Daniel Vrcic <[email protected]> - 0.5.3-1%{?dist}
- ARGO-2530 bytes handling in Py3
* Wed Jul 8 2020 Daniel Vrcic <[email protected]> - 0.5.2-1%{?dist}
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from os import path
import glob

NAME='argo-ams-library'
NAME = 'argo-ams-library'

this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md')) as f:
Expand Down

0 comments on commit a6ff8c5

Please sign in to comment.