File tree 5 files changed +9
-6
lines changed
5 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 58
58
- name : Prepare for installing dependencies and package
59
59
working-directory : ${{github.workspace}}/py_cubic_ingestion
60
60
run : |
61
- poetry export --output requirements.txt
61
+ poetry export --without-hashes -- output requirements.txt
62
62
poetry build
63
63
- name : Install dependencies and py_cubic_ingestion package into 'libs'
64
64
working-directory : ${{github.workspace}}/py_cubic_ingestion
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ adr-tools 3.0.0
2
2
elixir 1.13.2-otp-24
3
3
erlang 24.2.1
4
4
java openjdk-11
5
- poetry 1.4 .2
6
- python 3.7.12
5
+ poetry 1.3 .2
6
+ python 3.7.17
7
7
terraform 1.1.8
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ ENV SPARK_HOME=/spark-2.4.3-bin-spark-2.4.3-bin-hadoop2.8
31
31
RUN /glue/bin/gluesparksubmit --version
32
32
33
33
# python packaging
34
- RUN pip install poetry
34
+ ### Note: This version here needs to match .tool-versions
35
+ RUN pip install poetry==1.3.2
35
36
# install py_cubic_ingestion's required python dependencies
36
37
COPY ./py_cubic_ingestion /data_platform/py_cubic_ingestion
37
38
WORKDIR /data_platform/py_cubic_ingestion
Original file line number Diff line number Diff line change @@ -32,7 +32,8 @@ ENV SPARK_HOME=/spark-3.1.1-amzn-0-bin-3.2.1-amzn-3
32
32
RUN /glue/bin/gluesparksubmit --version
33
33
34
34
# python packaging
35
- RUN pip install poetry
35
+ ### Note: This version here needs to match .tool-versions
36
+ RUN pip install poetry==1.3.2
36
37
# install py_cubic_ingestion's required python dependencies
37
38
COPY ./py_cubic_ingestion /data_platform/py_cubic_ingestion
38
39
WORKDIR /data_platform/py_cubic_ingestion
Original file line number Diff line number Diff line change @@ -9,7 +9,8 @@ packages = [
9
9
]
10
10
11
11
[tool .poetry .dependencies ]
12
- python = " 3.7.12"
12
+ # ## Note: This version here needs to match .tool-versions
13
+ python = " 3.7.17"
13
14
python-dateutil = " ^2.8.2"
14
15
boto3-stubs = {extras = [" glue" ], version = " ^1.24.23" }
15
16
You can’t perform that action at this time.
0 commit comments