Skip to content

Commit

Permalink
Fixed: few bugs in RPM packaging
Browse files Browse the repository at this point in the history
* Added: .rpm in .gitignore.
* Fixed: clean removes RPM packages.
* Incremented version.
  • Loading branch information
strizhechenko committed Jul 29, 2017
1 parent 088c782 commit bf798f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ build
.idea
.cache
.coverage
*.rpm
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ clean:
find . -name '*.pyc' -exec rm -f {} \;
find . -name '*.pyo' -exec rm -f {} \;
find . -name '*~' -exec rm -f {} \;
rm -f *.rpm

lint:
./flake8.sh netutils_linux_monitoring netutils_linux_tuning netutils_linux_hardware
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def read(*paths):

setuptools.setup(
name='netutils-linux',
version='2.4.0',
version='2.4.1',
author='Oleg Strizhechenko',
author_email='[email protected]',
license='MIT',
Expand Down

0 comments on commit bf798f3

Please sign in to comment.