diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index e83b0da..42b7162 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -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 @@ -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 diff --git a/setup.cfg b/setup.cfg index fa66bba..537fd96 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 diff --git a/setup.py b/setup.py index 8ab824c..8bf1ba9 100644 --- a/setup.py +++ b/setup.py @@ -1,2 +1,2 @@ from setuptools import setup -setup() \ No newline at end of file +setup()