Skip to content

Commit f009245

Browse files
committed
reduce number of top-level files
1 parent 89c7e96 commit f009245

25 files changed

+19
-18
lines changed

.prettierrc

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

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ matrix:
1717
language: shell
1818

1919
before_install:
20-
- python3 -m pip install -r requirements-utest.txt
20+
- python3 -m pip install -r requirements/utest.txt
2121
- python3 -m pip freeze
2222
- python3 setup.py sdist
2323
- python3 setup.py bdist_wheel

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ for development.
3737
conda env update -n jupyterlab-lsp # create a conda env
3838
source activate jupyterlab-lsp # activate it
3939
# or...
40-
pip install -r requirements-dev.txt # in a virtualenv, probably
40+
pip install -r requirements/dev.txt # in a virtualenv, probably
4141
# ... and install nodejs, somehow
4242
```
4343

@@ -135,9 +135,9 @@ First, ensure you've prepared JupyterLab for `jupyterlab-lsp`
135135
Prepare the enviroment:
136136

137137
```bash
138-
conda env update -n jupyterlab-lsp --file environment-atest.yml
138+
conda env update -n jupyterlab-lsp --file requirements/atest.yml
139139
# or
140-
pip install -r requirements-atest.txt # ... and install geckodriver, somehow
140+
pip install -r requirements/atest.txt # ... and install geckodriver, somehow
141141
apt-get install firefox-geckodriver # ... e.g. on debian/ubuntu
142142
```
143143

File renamed without changes.
File renamed without changes.

ci/job.lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ parameters:
77
- name: ThreeSeven
88
spec: '>=3.7,<3.8.0a0'
99
env_update: conda env update -n jupyterlab-lsp --file env-test.yml --quiet
10-
env_lint: conda env update -n jupyterlab-lsp --file environment-lint.yml --quiet
10+
env_lint: conda env update -n jupyterlab-lsp --file requirements/lint.yml --quiet
1111

1212
jobs:
1313
- ${{ each platform in parameters.platforms }}:
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)