Skip to content

Commit

Permalink
hotfix for the psycopg2 version (blocked fidesops), removed --no-deps…
Browse files Browse the repository at this point in the history
… flag that was breaking M1 macs
  • Loading branch information
Thomas La Piana committed Sep 27, 2021
1 parent 991385d commit 0d10165
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -76,19 +76,19 @@ check-all: check-install black pylint mypy xenon pytest

check-install:
@echo "Checking that fidesctl is installed..."
@docker-compose run --no-deps $(IMAGE_NAME) \
@docker-compose run $(IMAGE_NAME) \
fidesctl

black: compose-build
@docker-compose run --no-deps $(IMAGE_NAME) \
@docker-compose run $(IMAGE_NAME) \
black --check src/

mypy: compose-build
@docker-compose run --no-deps $(IMAGE_NAME) \
@docker-compose run $(IMAGE_NAME) \
mypy

pylint: compose-build
@docker-compose run --no-deps $(IMAGE_NAME) \
@docker-compose run $(IMAGE_NAME) \
pylint src/

pytest: compose-build init-db
Expand All @@ -97,7 +97,7 @@ pytest: compose-build init-db
pytest

xenon: compose-build
@docker-compose run --no-deps $(IMAGE_NAME) \
@docker-compose run $(IMAGE_NAME) \
xenon src \
--max-absolute B \
--max-modules A \
Expand Down
3 changes: 1 addition & 2 deletions fidesctl/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ click==7.1.2
colorama==0.4.4
deepdiff==5.5.0
fastapi[all]==0.68.1
mysql-connector-python==8.0.24
PyJWT==2.1.0
psycopg2-binary==2.8.6
psycopg2-binary==2.9.1
pydantic==1.8.2
pyyaml==5.4.1
requests==2.25.1
Expand Down

0 comments on commit 0d10165

Please sign in to comment.