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

chore: 🤖 update all packages to support latest botocore #46

Merged
merged 2 commits into from
Jan 29, 2024
Merged
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
11 changes: 8 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ help: ## Show available commands

.PHONY: setup
setup: ## Set up dependencies
echo python version: $$(which python3.9)
echo python version: $$(which python3.10)
@(PIPENV_VERBOSITY=-1 pipenv --venv && PIPENV_VERBOSITY=-1 PIPENV_VENV_IN_PROJECT=1 pipenv --rm) || true >/dev/null
CFLAGS=$(CFLAGS) LC_ALL=$(LC_ALL) LANG=$(LANG) PIPENV_VENV_IN_PROJECT=1 pipenv sync --dev --python=$$(which python3.9)
CFLAGS=$(CFLAGS) LC_ALL=$(LC_ALL) LANG=$(LANG) PIPENV_VENV_IN_PROJECT=1 pipenv sync --dev --python=$$(which python3.10)
npm install

.PHONY: deploy
Expand All @@ -41,4 +41,9 @@ test:

.PHONY: test-log
test-log:
pipenv run pytest --cov-report term-missing --cov -vs --log-cli-level info
pipenv run pytest --cov-report term-missing --cov -vs --log-cli-level info

.PHONY: requirements
requirements: ## Create requirements.txt
pipenv requirements > requirements.txt
pipenv requirements --dev > requirements-dev.txt
Loading
Loading