Skip to content

Commit 67a63ba

Browse files
authored
Merge pull request #20 from dolfinus/fix_release
Fix releases
2 parents d8ad467 + d8c7405 commit 67a63ba

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/tests.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ jobs:
1212
matrix:
1313
python:
1414
- "3.6"
15-
- "3.6"
1615
- "3.7"
1716
- "3.8"
1817
- "3.9"

requirements-dev.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ mypy
44
sphinx
55
nose
66
black
7+
twine<3.4

scripts/prepare.sh

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ function WEBSERVER_AUTH() {
3535
export PYTHON_VERSION=$(python3 -c "import sys; print('%s.%s' % (sys.version_info.major, sys.version_info.minor))")
3636
pip install \
3737
"apache-airflow[${EXTRAS}]==${AIRFLOW_VERSION}" \
38-
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-${CONSTRAINTS_VERSION}/constraints-${PYTHON_VERSION}.txt"
38+
--constraint "https://raw.githubusercontent.com/apache/airflow/constraints-${CONSTRAINTS_VERSION}/constraints-${PYTHON_VERSION}.txt" \
39+
-r "${PARENT_DIR}/requirements.txt" \
40+
-r "${PARENT_DIR}/requirements-dev.txt"
3941

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

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

0 commit comments

Comments
 (0)