Skip to content

Commit

Permalink
Removed configparser pypi requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
dvershinin committed Sep 17, 2020
1 parent 7a55610 commit 6d4d44e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion recorder/__about__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# -*- coding: utf-8 -*-

__version__ = '3.2.7'
__version__ = '3.2.8'
__copyright__ = "\n".join(['© 2019 M.Hanny Sabbagh', '© 2020 Danila Vershinin'])
2 changes: 1 addition & 1 deletion recorder/recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
import locale
import sys

# long story short, "configparser" Python 2 backports package is no good because it strips init py
# long story short, "configparser" Python 2 backport RPM package is no good because it strips init py
try:
# Python 3
from configparser import ConfigParser
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
'pydbus',
'PyGObject',
'appdirs',
'configparser>=3.7.1',
# long story short, "configparser" Python 2 backport RPM package is no good because it strips init py
# 'configparser>=3.7.1',
]
tests_requires = ["pytest>=4.4.0", "flake8", "pytest-xdist"]

Expand Down

0 comments on commit 6d4d44e

Please sign in to comment.