Skip to content

Commit 5aabc61

Browse files
committed
Remove pyqt5 requirement
1 parent b411ca5 commit 5aabc61

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
python3 -m venv .venv
4141
. .venv/bin/activate
4242
pip install --upgrade pip
43-
pip install .[test,publish]
43+
pip install .[ui,test,publish]
4444
4545
# run tests!
4646
- run:

setup.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
README_CONTENTS = fp.read()
1212

1313
install_requires = [
14-
'pyQt5',
1514
'matplotlib',
1615
'jinja2',
1716
'pandas',
@@ -30,7 +29,8 @@
3029

3130
extras_require = {
3231
'test': tests_require,
33-
'publish': ['twine']
32+
'publish': ['twine'],
33+
'ui': ['pyqt5']
3434
}
3535

3636
setup(
@@ -42,9 +42,9 @@
4242
cmdclass=versioneer.get_cmdclass(),
4343
license='GPLv3',
4444
version=versioneer.get_version(),
45-
author='Simmovation Ltd',
46-
author_email='info@simmovation.tech',
47-
url='https://github.com/Simmovation/pyqttoolkit',
45+
author='Bitbloom Ltd',
46+
author_email='info@bitbloom.tech',
47+
url='https://github.com/BitBloomTech/pyqttoolkit',
4848
platforms='any',
4949
description='A toolkit for PyQt 5',
5050
long_description=README_CONTENTS,

0 commit comments

Comments
 (0)