Skip to content

Commit 416ce2c

Browse files
authored
Merge pull request #96 from andrewm4894/py311
Update dependencies and refactor Dockerfiles + bump python + bump version
2 parents 717b13b + d1556e0 commit 416ce2c

File tree

6 files changed

+11
-4
lines changed

6 files changed

+11
-4
lines changed

.devcontainer/post_create_command.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ set -ex
44

55
echo "start post create command..."
66

7+
# install requirements-dev.txt
8+
pip install -r requirements-dev.txt
9+
710
# copy .example.env to .env
811
cp .example.env .env
912

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ SHELL=/bin/bash
66
.PHONY: pre-commit
77
.PHONY: tests
88
.PHONY: docs
9+
.PHONY: requirements
910

1011
## start streamlit dashboard
1112
dashboard:
@@ -33,3 +34,6 @@ dev:
3334

3435
docs:
3536
cd docs && yarn start
37+
38+
requirements:
39+
pip-compile requirements.compile

docker/Dockerfile.anomstack_code

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33
RUN apt-get update && apt-get install -y git
44

docker/Dockerfile.anomstack_dashboard

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.10-slim
1+
FROM python:3.11-slim
22

33
RUN apt-get update && apt-get install -y git
44

docker/Dockerfile.dagster

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Dagster libraries to run both dagit and the dagster-daemon. Does not
22
# need to have access to any pipeline code.
33

4-
FROM python:3.10-slim
4+
FROM python:3.11-slim
55

66
RUN apt-get update && apt-get install -y git
77

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ def read_requirements():
88

99
setup(
1010
name='anomstack',
11-
version='0.0.11',
11+
version='0.0.12',
1212
packages=find_packages(),
1313
install_requires=read_requirements()
1414
)

0 commit comments

Comments
 (0)