Skip to content

Commit e8b3dc9

Browse files
authored
Merge pull request #649 from ccordoba12/update-readme-and-setup.py
Update Readme and `setup.py` due to the move to the Spyder organization
2 parents f6e548e + e2e6dfd commit e8b3dc9

File tree

3 files changed

+11
-20
lines changed

3 files changed

+11
-20
lines changed

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
INSTALL_TYPE: ${{ matrix.INSTALL_TYPE }}
3030
QT_API: ${{ matrix.QT_LIB }}
3131
PYTEST_QT_API: ${{ matrix.QT_LIB }}
32-
COVERALLS_REPO_TOKEN: 'XWVhJf2AsO7iouBLuCsh0pPhwHy81Uz1v'
32+
COVERALLS_REPO_TOKEN: 'dNLW68EOHK4mbPjKEFpNuhQbxaB50Clhp'
3333
COVERALLS_SERVICE_NAME: 'github-actions'
3434
strategy:
3535
fail-fast: false

README.md

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# Jupyter QtConsole
22

3-
![Windows tests](https://github.com/jupyter/qtconsole/workflows/Windows%20tests/badge.svg)
4-
![Macos tests](https://github.com/jupyter/qtconsole/workflows/Macos%20tests/badge.svg)
5-
![Linux tests](https://github.com/jupyter/qtconsole/workflows/Linux%20tests/badge.svg)
6-
[![Coverage Status](https://coveralls.io/repos/github/jupyter/qtconsole/badge.svg?branch=master)](https://coveralls.io/github/jupyter/qtconsole?branch=master)
3+
[![Tests](https://github.com/spyder-ide/qtconsole/actions/workflows/tests.yaml/badge.svg)](https://github.com/spyder-ide/qtconsole/actions/workflows/tests.yaml)
4+
[![Coverage Status](https://coveralls.io/repos/github/spyder-ide/qtconsole/badge.svg?branch=main)](https://coveralls.io/github/spyder-ide/qtconsole?branch=main)
75
[![Documentation Status](https://readthedocs.org/projects/qtconsole/badge/?version=stable)](https://qtconsole.readthedocs.io/en/stable/)
8-
[![Google Group](https://img.shields.io/badge/-Google%20Group-lightgrey.svg)](https://groups.google.com/forum/#!forum/jupyter)
96

107
A rich Qt-based console for working with Jupyter kernels,
118
supporting rich media output, session export, and more.
@@ -15,7 +12,9 @@ provides a number of enhancements only possible in a GUI, such as inline
1512
figures, proper multiline editing with syntax highlighting, graphical calltips,
1613
and more.
1714

18-
![qtconsole](https://raw.githubusercontent.com/jupyter/qtconsole/master/docs/source/_images/qtconsole.png)
15+
This project is maintained by the Spyder development team and part of its organization.
16+
17+
![qtconsole](https://raw.githubusercontent.com/spyder-ide/qtconsole/master/docs/source/_images/qtconsole.png)
1918

2019
## Install Qtconsole
2120
The Qtconsole requires Python bindings for Qt, such as [PyQt6](https://pypi.org/project/PyQt6/), [PySide6](https://pypi.org/project/PySide6/), [PyQt5](https://pypi.org/project/PyQt5/) or [PySide2](https://pypi.org/project/PySide2/).
@@ -53,21 +52,13 @@ used.
5352
**Note:** Additional information about using a system package manager may be
5453
found in the [qtconsole documentation](https://qtconsole.readthedocs.io).
5554

56-
More installation instructions for PyQt can be found in the [PyQt5 documentation](http://pyqt.sourceforge.net/Docs/PyQt5/installation.html) and [PyQt4 documentation](http://pyqt.sourceforge.net/Docs/PyQt4/installation.html)
57-
58-
Source packages for Windows/Linux/MacOS can be found here: [PyQt5](https://www.riverbankcomputing.com/software/pyqt/download5) and [PyQt4](https://riverbankcomputing.com/software/pyqt/download).
59-
60-
6155
## Usage
6256
To run the Qtconsole:
6357

6458
jupyter qtconsole
6559

6660
## Resources
6761
- [Project Jupyter website](https://jupyter.org)
68-
- Documentation for the Qtconsole
69-
* [latest version](https://qtconsole.readthedocs.io/en/latest/) [[PDF](https://media.readthedocs.org/pdf/qtconsole/latest/qtconsole.pdf)]
70-
* [stable version](https://qtconsole.readthedocs.io/en/stable/) [[PDF](https://media.readthedocs.org/pdf/qtconsole/stable/qtconsole.pdf)]
71-
- [Documentation for Project Jupyter](https://jupyter.readthedocs.io/en/latest/index.html) [[PDF](https://media.readthedocs.org/pdf/jupyter/latest/jupyter.pdf)]
72-
- [Issues](https://github.com/jupyter/qtconsole/issues)
73-
- [Technical support - Jupyter Google Group](https://groups.google.com/forum/#!forum/jupyter)
62+
- [Spyder website](https://www.spyder-ide.org)
63+
- [Documentation for the Qtconsole](https://qtconsole.readthedocs.io/en/stable/)
64+
- [Issues](https://github.com/spyder-ide/qtconsole/issues)

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import sys
1414

1515
v = sys.version_info
16-
if v[0] >= 3 and v[:2] < (3, 8):
16+
if v[0] >= 3 and v[:2] < (3, 9):
1717
error = "ERROR: %s requires Python version 3.9 or above." % name
1818
print(error, file=sys.stderr)
1919
sys.exit(1)
@@ -57,7 +57,7 @@
5757
long_description = long_description,
5858
long_description_content_type = 'text/markdown',
5959
author = 'Jupyter Development Team',
60-
author_email = 'jupyter@googlegroups.com',
60+
author_email = 'spyder.python@gmail.com',
6161
maintainer = 'Spyder Development Team',
6262
url = 'http://jupyter.org',
6363
license = 'BSD',

0 commit comments

Comments
 (0)