Skip to content

Commit

Permalink
Update CI configs
Browse files Browse the repository at this point in the history
 - Update install command which is deprecated
 - Do not specify dependency versions in setup.cfg by following the best
   practice
  • Loading branch information
hrchu committed Oct 31, 2023
1 parent 5243b84 commit ffd2c69
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Install setuptools
run: pip install setuptools
- name: Install solid
run: python setup.py install
run: pip install .
- name: Install pytest
run: pip install pytest
- name: Run pytest
Expand All @@ -48,7 +48,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install solid
run: python setup.py install
run: pip install .
- name: Install pytest
run: pip install pytest
- name: Run Solid Authorization tests
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ package_dir =
packages = find:
python_requires = >=3.7
install_requires =
httpx==0.23.0
rdflib==5.0.0
httpx
rdflib

[options.packages.find]
where = src
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
from setuptools import setup
setup()
setup()

0 comments on commit ffd2c69

Please sign in to comment.