Skip to content

Commit

Permalink
Add base requirements.txt file to doc and test requirements; update M…
Browse files Browse the repository at this point in the history
…akefile and tox.ini dependency install steps.
  • Loading branch information
jadchaar committed Dec 31, 2021
1 parent 1e4c63c commit b74d1ef
Show file tree
Hide file tree
Showing 26 changed files with 116 additions and 97 deletions.
9 changes: 4 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,8 @@ build36 build37 build38 build39 build310: clean
$(PYTHON_VER) -m venv venv
. venv/bin/activate; \
pip install -U pip setuptools wheel; \
pip install -r requirements/requirements.txt; \
pip install -r requirements/requirements-docs.txt; \
pip install -r requirements/requirements-tests.txt; \
pip install -r requirements/requirements-docs.txt; \
pre-commit install

test:
Expand Down Expand Up @@ -47,19 +46,19 @@ deep-clean:
clean-env:
rm -rf venv .tox

clean: clean-dist
clean: clean-env clean-dist clean-docs
rm -rf .pytest_cache ./**/__pycache__ .mypy_cache
rm -f .coverage coverage.xml ./**/*.pyc

clean-dist:
rm -rf dist build *.egg *.eggs *.egg-info

build-dist:
build-dist: clean-dist
. venv/bin/activate; \
pip install -U flit; \
flit build --setup-py

publish: test clean
publish: test clean-dist
. venv/bin/activate; \
pip install -U flit; \
flit publish --setup-py
2 changes: 1 addition & 1 deletion mappings/mutual_funds/cik_to_class_ids.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mappings/mutual_funds/cik_to_series_ids.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mappings/mutual_funds/cik_to_tickers.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mappings/mutual_funds/class_id_to_cik.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion mappings/mutual_funds/class_id_to_ticker.json

Large diffs are not rendered by default.

Loading

0 comments on commit b74d1ef

Please sign in to comment.