Skip to content

Commit

Permalink
Merge pull request #7 from eth-cscs/setup
Browse files Browse the repository at this point in the history
Remove dependencies from `setup.py`
  • Loading branch information
rsarm committed May 30, 2024
2 parents 500bf42 + 30bd047 commit 60f9c35
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/unittests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ jobs:
python-version: '3.11'

- name: Install dependencies
run: pip install -r requirements.txt

run: |
pip install -r requirements.txt
pip install -r requirements-tests.txt
- name: Run Unit Tests
run: pytest . -vvv
4 changes: 4 additions & 0 deletions requirements-tests.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
pytest==7.4.2
pytest_httpserver==1.0.10
werkzeug==3.0.1
pytest-asyncio==0.23.7
4 changes: 0 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,3 @@ jupyterhub==4.1.5
pyfirecrest==2.1.0
SQLAlchemy==1.4.52
oauthenticator==16.0.7
pytest==7.4.2
pytest_httpserver==1.0.10
werkzeug==3.0.1
pytest-asyncio==0.23.7
9 changes: 0 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,4 @@
description='FirecREST-Spawner: A spawner for Jupyterhub to spawn notebooks using FirecREST.',
long_description=long_description,
long_description_content_type='text/markdown',
# install_requires=[
# 'jupyterhub==2.0.0',
# 'pyfirecrest==2.1.0',
# 'SQLAlchemy==1.3.22',
# 'oauthenticator==16.0.7'
# ],
extras_require={
"oauth": ['oauthenticator==16.0.7']
}
)

0 comments on commit 60f9c35

Please sign in to comment.