Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit d621f3c

Browse files
author
Samuel Hassine
committed
Fix CircleCI
1 parent 90e8e3e commit d621f3c

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.circleci/config.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ jobs:
77
- image: circleci/python:3.6
88
steps:
99
- checkout
10+
- run:
11+
name: install dependencies
12+
command: pip3 install -r requirements.txt
1013
- run:
1114
name: build
1215
command: python3 setup.py sdist
@@ -20,7 +23,10 @@ jobs:
2023
- image: circleci/python:3.6
2124
steps:
2225
- attach_workspace:
23-
at: ~/
26+
at: ~/*
27+
- run:
28+
name: install dependencies
29+
command: pip3 install -r requirements.txt
2430
- run:
2531
name: verify git tag vs. version
2632
command: python3 setup.py verify

0 commit comments

Comments
 (0)