diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 2fe36d17..a04dccd4 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -41,8 +41,13 @@ jobs: uses: actions/setup-python@v1 with: python-version: 3.8 + - uses: actions/setup-node@v1 + with: + node-version: '8.x' - name: Add wheel dependency run: pip install wheel + - name: Build front end + run: "npm install grunt-cli && npm install && grunt build" - name: Generate dist run: python setup.py sdist bdist_wheel - name: Publish to PyPI diff --git a/MANIFEST.in b/MANIFEST.in index 93733f0f..db4b57b7 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,10 @@ include VERSION recursive-include confidant/dist * +recursive-include tests * +recursive-include config * include requirements.txt include requirements.in +include .jshintrc +include Gruntfile.js +include package.json +include pytest.ini diff --git a/VERSION b/VERSION index 19b860c1..f22d756d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -6.4.0 +6.5.0