Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade setuptools/pip in Dockerfile #27405

Merged
merged 4 commits into from
Mar 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ RUN --mount=type=bind,target=./requirements/local.txt,src=./requirements/local.t
--mount=type=bind,target=./requirements/development.txt,src=./requirements/development.txt \
--mount=type=bind,target=./requirements/base.txt,src=./requirements/base.txt \
--mount=type=cache,target=/root/.cache/pip \
pip install --upgrade setuptools pip && \
pip install -r requirements/local.txt

COPY --chown=superset:superset --from=superset-node /app/superset/static/assets superset/static/assets
Expand Down
14 changes: 9 additions & 5 deletions requirements/base.txt
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,7 @@ geopy==2.2.0
google-auth==2.27.0
# via shillelagh
greenlet==3.0.3
# via
# shillelagh
# sqlalchemy
# via shillelagh
gunicorn==21.2.0
# via apache-superset
hashids==1.3.1
Expand All @@ -161,7 +159,10 @@ idna==3.2
# email-validator
# requests
importlib-metadata==6.6.0
# via apache-superset
# via
# apache-superset
# flask
# shillelagh
importlib-resources==5.12.0
# via limits
isodate==0.6.0
Expand Down Expand Up @@ -357,6 +358,7 @@ typing-extensions==4.4.0
# apache-superset
# cattrs
# flask-limiter
# kombu
# limits
# shillelagh
tzdata==2023.3
Expand Down Expand Up @@ -398,7 +400,9 @@ wtforms-json==0.3.5
xlsxwriter==3.0.7
# via apache-superset
zipp==3.15.0
# via importlib-metadata
# via
# importlib-metadata
# importlib-resources

# The following packages are considered to be unsafe in a requirements file:
# setuptools
1 change: 0 additions & 1 deletion requirements/development.in
Original file line number Diff line number Diff line change
Expand Up @@ -23,5 +23,4 @@ progress>=1.5,<2
pyinstrument>=4.0.2,<5
pylint
python-ldap>=3.4.3
setuptools>=65.5.1
sqloxide
4 changes: 3 additions & 1 deletion requirements/development.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SHA1:e35d6e709dc86002ca35ad59f7119aa6cc1e7179
# SHA1:5d8f94148b758249eecc1e6a9b2f3ffde15815ad
#
# This file is autogenerated by pip-compile-multi
# To update, run:
Expand All @@ -10,6 +10,8 @@
# via
# -r requirements/base.in
# -r requirements/development.in
appnope==0.1.4
# via ipython
astroid==2.15.8
# via pylint
asttokens==2.2.1
Expand Down
Loading