Skip to content

Commit 0a3352d

Browse files
authored
PR: Rename namespace to pylsp and package to python-lsp-server (#10)
1 parent fcb9bee commit 0a3352d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

90 files changed

+798
-5505
lines changed

.circleci/config.yml

Lines changed: 0 additions & 60 deletions
This file was deleted.

.coveragerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[run]
2-
omit = pyls/_version.py
2+
omit = pylsp/_version.py

.gitattributes

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
pyls/_version.py export-subst
1+
pylsp/_version.py export-subst

.github/workflows/static.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ jobs:
2828
with:
2929
# TODO: check with Python 3, but need to fix the
3030
# errors first
31-
python-version: '2.7'
31+
python-version: '3.6'
3232
architecture: 'x64'
3333
- run: python -m pip install --upgrade pip setuptools
3434
- run: pip install -e .[pylint,pycodestyle,pyflakes]
3535
- name: Pylint checks
36-
run: pylint pyls test
36+
run: pylint pylsp test
3737
- name: Code style checks
38-
run: pycodestyle pyls test
38+
run: pycodestyle pylsp test
3939
- name: Pyflakes checks
40-
run: pyflakes pyls test
40+
run: pyflakes pylsp test

.github/workflows/test-linux.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6', '2.7']
23+
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1
@@ -41,3 +41,7 @@ jobs:
4141
- run: python -m pip install --upgrade pip setuptools
4242
- run: pip install -e .[all,test]
4343
- run: pytest -v test/
44+
# Enable this if SSH debugging is required
45+
# - name: Setup tmate session
46+
# uses: mxschmitt/action-tmate@v3
47+
# if: ${{ failure() }}

.github/workflows/test-mac.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6', '2.7']
23+
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1
@@ -41,3 +41,7 @@ jobs:
4141
- run: python -m pip install --upgrade pip setuptools
4242
- run: pip install -e .[all,test]
4343
- run: pytest -v test/
44+
# Enable this if SSH debugging is required
45+
# - name: Setup tmate session
46+
# uses: mxschmitt/action-tmate@v3
47+
# if: ${{ failure() }}

.github/workflows/test-win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
strategy:
2121
fail-fast: false
2222
matrix:
23-
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6', '2.7']
23+
PYTHON_VERSION: ['3.9', '3.8', '3.7', '3.6']
2424
timeout-minutes: 10
2525
steps:
2626
- uses: actions/cache@v1

.pylintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@ reports = no
2525
[TYPECHECK]
2626

2727
generated-members =
28-
pyls_*
28+
pylsp_*
2929
cache_clear

LICENSE

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
The MIT License (MIT)
22

3-
Copyright 2017 Palantir Technologies, Inc.
3+
Copyright 2017-2020 Palantir Technologies, Inc.
4+
Copyright 2021 Python Language Server Contributors.
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy
67
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
include README.md
22
include versioneer.py
3-
include pyls/_version.py
3+
include pylsp/_version.py
44
include LICENSE
55
include .pylintrc
66
recursive-include test *.py

0 commit comments

Comments
 (0)