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

Investigate Python dependency issues #119

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build-and-test:
executor:
name: python/default
tag: "3.9"
tag: "3.8"
environment:
PYTHONPATH=./src
steps:
Expand All @@ -20,7 +20,7 @@ jobs:
lint-and-coverage:
executor:
name: python/default
tag: "3.9"
tag: "3.8"
environment:
PYTHONPATH=./src
steps:
Expand All @@ -40,7 +40,7 @@ jobs:
test-on-k8s:
executor:
name: python/default
tag: "3.9"
tag: "3.8"
environment:
PYTHONPATH=./src
steps:
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
publish-to-pypi:
executor:
name: python/default
tag: "3.9"
tag: "3.8"
environment:
PYTHONPATH=./src
steps:
Expand Down
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
google-auth==1.21.3
kubernetes>=21.7.0
kubernetes<25.0.0
robotframework>=3.2.2
urllib3-mock>=0.3.3
2 changes: 1 addition & 1 deletion testcases/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9.0-alpine
FROM python:3.8.0-alpine
COPY setup.py README.md requirements.txt ./
COPY src ./src
COPY testcases ./testcases
Expand Down