Skip to content

Commit 7749310

Browse files
committed
Fix CI tests by temporarily pinning numpy; update repo paths
1 parent a91a257 commit 7749310

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

README.rst

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
Python Language Server
22
======================
33

4-
.. image:: https://github.com/palantir/python-language-server/workflows/Linux%20tests/badge.svg
5-
:target: https://github.com/palantir/python-language-server/actions?query=workflow%3A%22Linux+tests%22
4+
.. image:: https://github.com/python-ls/python-ls/workflows/Linux%20tests/badge.svg
5+
:target: https://github.com/python-ls/python-ls/actions?query=workflow%3A%22Linux+tests%22
66

7-
.. image:: https://github.com/palantir/python-language-server/workflows/Mac%20tests/badge.svg
8-
:target: https://github.com/palantir/python-language-server/actions?query=workflow%3A%22Mac+tests%22
7+
.. image:: https://github.com/python-ls/python-ls/workflows/Mac%20tests/badge.svg
8+
:target: https://github.com/python-ls/python-ls/actions?query=workflow%3A%22Mac+tests%22
99

10-
.. image:: https://github.com/palantir/python-language-server/workflows/Windows%20tests/badge.svg
11-
:target: https://github.com/palantir/python-language-server/actions?query=workflow%3A%22Windows+tests%22
10+
.. image:: https://github.com/python-ls/python-ls/workflows/Windows%20tests/badge.svg
11+
:target: https://github.com/python-ls/python-ls/actions?query=workflow%3A%22Windows+tests%22
1212

13-
.. image:: https://img.shields.io/github/license/palantir/python-language-server.svg
14-
:target: https://github.com/palantir/python-language-server/blob/master/LICENSE
13+
.. image:: https://img.shields.io/github/license/python-ls/python-ls.svg
14+
:target: https://github.com/python-ls/python-ls/blob/master/LICENSE
1515

1616
A Python 2.7 and 3.5+ implementation of the `Language Server Protocol`_.
1717

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
long_description=README,
3131

3232
# The project's main homepage.
33-
url='https://github.com/palantir/python-language-server',
33+
url='https://github.com/python-ls/python-ls',
3434

3535
author='Palantir Technologies, Inc.',
3636

@@ -74,7 +74,7 @@
7474
'yapf': ['yapf'],
7575
'test': ['versioneer',
7676
'pylint>=2.5.0' if sys.version_info.major >= 3 else 'pylint',
77-
'pytest', 'mock', 'pytest-cov', 'coverage', 'numpy', 'pandas',
77+
'pytest', 'mock', 'pytest-cov', 'coverage', 'numpy<1.20', 'pandas',
7878
'matplotlib', 'pyqt5;python_version>="3"', 'flaky'],
7979
},
8080

0 commit comments

Comments
 (0)