Skip to content

Commit

Permalink
371 visuals/schemas not included upon using pip install (#372)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
JosephCottam authored Sep 12, 2023
1 parent 7cb8e79 commit 5899664
Show file tree
Hide file tree
Showing 7 changed files with 640 additions and 524 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
run: |
# python -m pip install --upgrade pip
# python -m pip install flake8 pytest
pip install -e .[tests]
pip install --no-cache "pyciemss[tests] @ git+https://github.com/ciemss/pyciemss.git@${GITHUB_SHA}"
# - name: Lint with flake8
# run: |
# # stop the build if there are Python syntax errors or undefined names
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pyciemss
version = 0.0.2
version = 0.0.3

license = BSD-3-Clause
license_files = LICENSE
Expand Down Expand Up @@ -72,4 +72,4 @@ ignore_missing_imports = True
exclude = causal_pyro

[mypy-test.models.*]
ignore_errors = True
ignore_errors = True
Empty file.
Loading

0 comments on commit 5899664

Please sign in to comment.