Skip to content

Commit

Permalink
Fix configure error and test the CI again
Browse files Browse the repository at this point in the history
Signed-off-by: ziadhany <ziadhany2016@gmail.com>
  • Loading branch information
ziadhany committed Dec 23, 2023
1 parent b2f51f8 commit 7c42c93
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ CLI_ARGS=$1
################################

# Requirement arguments passed to pip and used by default or with --dev.
REQUIREMENTS="--editable . --constraint requirements.txt"
DEV_REQUIREMENTS="--editable .[testing] --constraint requirements.txt --constraint requirements-dev.txt"
DOCS_REQUIREMENTS="--editable .[docs] --constraint requirements.txt"
REQUIREMENTS="--editable . -r requirements.txt"
DEV_REQUIREMENTS="--editable .[testing] -r requirements.txt -r requirements-dev.txt"
DOCS_REQUIREMENTS="--editable .[docs] -r requirements.txt"

# where we create a virtualenv
VIRTUALENV_DIR=venv
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ python_requires = >=3.7

install_requires =
Django>=4.2.2
psycopg2-binary>=3.1.12
psycopg2-binary>=2.8.6
djangorestframework>=3.12.4
django-oauth-toolkit>=2.3.0
django-rest-framework>=0.1.0
Expand Down

0 comments on commit 7c42c93

Please sign in to comment.