Skip to content

Commit 5899664

Browse files
authored
371 visuals/schemas not included upon using pip install (#372)
* Adding __init__.py to schemas directory to (hopefully) include it pip-install-from-tag. * Removing top-level include-all and reformatting (to match an example). * Trying alternate package-data option The prior option worked, but might be too specific. This is more general (but might not work). * Checking if the init.py is required for data-only directory. * Attempting to install with pip+github Instead of checkout and local-install, to catch some packaging issues. * Install tests w/CI script. * Changing version number. * Changing install-with-tests syntax * Restoring init.py in schemas directory * Restoring the json-filter. * Reverting to a prior successful state (almost) * Making complexvid a proper package and flake8 compliant
1 parent 7cb8e79 commit 5899664

7 files changed

Lines changed: 640 additions & 524 deletions

File tree

.github/workflows/python-package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
# python -m pip install --upgrade pip
3030
# python -m pip install flake8 pytest
31-
pip install -e .[tests]
31+
pip install --no-cache "pyciemss[tests] @ git+https://github.com/ciemss/pyciemss.git@${GITHUB_SHA}"
3232
# - name: Lint with flake8
3333
# run: |
3434
# # stop the build if there are Python syntax errors or undefined names

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = pyciemss
3-
version = 0.0.2
3+
version = 0.0.3
44

55
license = BSD-3-Clause
66
license_files = LICENSE
@@ -72,4 +72,4 @@ ignore_missing_imports = True
7272
exclude = causal_pyro
7373

7474
[mypy-test.models.*]
75-
ignore_errors = True
75+
ignore_errors = True

src/pyciemss/utils/complexvid_scabini/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)