Skip to content

Commit ffd2c69

Browse files
committed
Update CI configs
- Update install command which is deprecated - Do not specify dependency versions in setup.cfg by following the best practice
1 parent 5243b84 commit ffd2c69

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/continuous-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install setuptools
2929
run: pip install setuptools
3030
- name: Install solid
31-
run: python setup.py install
31+
run: pip install .
3232
- name: Install pytest
3333
run: pip install pytest
3434
- name: Run pytest
@@ -48,7 +48,7 @@ jobs:
4848
with:
4949
python-version: ${{ matrix.python-version }}
5050
- name: Install solid
51-
run: python setup.py install
51+
run: pip install .
5252
- name: Install pytest
5353
run: pip install pytest
5454
- name: Run Solid Authorization tests

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ package_dir =
2121
packages = find:
2222
python_requires = >=3.7
2323
install_requires =
24-
httpx==0.23.0
25-
rdflib==5.0.0
24+
httpx
25+
rdflib
2626

2727
[options.packages.find]
2828
where = src

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
from setuptools import setup
2-
setup()
2+
setup()

0 commit comments

Comments
 (0)