Skip to content

Commit a6fb039

Browse files
author
Auke Willem Oosterhoff
committed
Add CircleCI configuration.
Also jsonschema has been updated because the configured version, 2.6.0, conflicted with the version required by poetry. Fixes: #3
1 parent 91a3a40 commit a6fb039

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.circleci/config.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
version: 2.1
2+
jobs:
3+
build:
4+
docker:
5+
- image: circleci/python:3.7.3
6+
steps:
7+
- checkout
8+
- run:
9+
name: run tests
10+
command: make deps && make test

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
jsonschema==2.6.0
1+
jsonschema==3.0.1

requirements_dev.txt

-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,4 @@ coverage==4.5.2
55
pytest-asyncio==0.10.0
66
pytest-cov==2.6.1
77
pytest==4.1.1
8-
twine==1.12.1
98
freezegun==0.3.11

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
],
2121
packages=find_packages(), # Required
2222
install_requires=[
23-
'jsonschema (==2.6.0)',
23+
'jsonschema (==3.0.1)',
2424
],
2525
dependency_links=[], # Optional
2626
include_package_data=True,

0 commit comments

Comments
 (0)