Skip to content

Commit

Permalink
Python ~> 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
amancevice committed Jan 14, 2024
1 parent 50e0a15 commit a795012
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .python-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.9.16
3.11.7
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG NODE_VERSION=16
ARG PYTHON_VERSION=3.9
ARG PYTHON_VERSION=3.11

FROM python:$PYTHON_VERSION

Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
REPO := amancevice/superset
PYTHON_VERSION := $(shell python --version | grep -Eo '[0-9.]+')
PYTHON_VERSION := $(shell cat .python-version)
SUPERSET_VERSION := $(shell grep apache-superset Pipfile | grep -Eo '[0-9.]+')

build: requirements-dev.txt
Expand Down Expand Up @@ -28,7 +28,6 @@ Pipfile.lock: Pipfile | .venv
pipenv lock

.venv:
rm -rf $@
mkdir -p $@
pipenv --python $(PYTHON_VERSION)
touch $@
3 changes: 0 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,3 @@ sqlalchemy-bigquery = "==1.8.0"
sqlalchemy-redshift = "==0.8.14"
sqlalchemy-trino = "==0.5.0"
thrift-sasl = "==0.4.3"

[requires]
python_version = "3.9"

0 comments on commit a795012

Please sign in to comment.