Skip to content

Commit

Permalink
Merge pull request #20 from dolfinus/fix_release
Browse files Browse the repository at this point in the history
Fix releases
  • Loading branch information
andreax79 committed May 12, 2021
2 parents d8ad467 + d8c7405 commit 67a63ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
matrix:
python:
- "3.6"
- "3.6"
- "3.7"
- "3.8"
- "3.9"
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ mypy
sphinx
nose
black
twine<3.4
5 changes: 3 additions & 2 deletions scripts/prepare.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ function WEBSERVER_AUTH() {
export PYTHON_VERSION=$(python3 -c "import sys; print('%s.%s' % (sys.version_info.major, sys.version_info.minor))")
pip install \
"apache-airflow[${EXTRAS}]==${AIRFLOW_VERSION}" \
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-${CONSTRAINTS_VERSION}/constraints-${PYTHON_VERSION}.txt"
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-${CONSTRAINTS_VERSION}/constraints-${PYTHON_VERSION}.txt" \
-r "${PARENT_DIR}/requirements.txt" \
-r "${PARENT_DIR}/requirements-dev.txt"

if [ ! -d "${AIRFLOW_HOME}" ]; then
mkdir -p "${AIRFLOW_HOME}"
Expand All @@ -59,4 +61,3 @@ if [[ "${ENABLE_AIRFLOW_AUTH}" == "1" ]]; then
fi

ln -sf "${CURRENT_DIR}/dags" "${AIRFLOW_HOME}/dags"
pip install -r "${PARENT_DIR}/requirements.txt" -r "${PARENT_DIR}/requirements-dev.txt"

0 comments on commit 67a63ba

Please sign in to comment.