Skip to content

Commit

Permalink
Build fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
spookylukey committed Sep 22, 2023
1 parent e8f8ce9 commit c967978
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,16 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
python-version: '3.10'
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ '3.9' }}-${{ hashFiles('requirements*.txt') }}
key: ${{ runner.os }}-pip-${{ '3.10' }}-${{ hashFiles('requirements*.txt') }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
pip install checkmanifest
pip install check-manifest
- name: check-manifest
run: |
check-manifest
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ repos:
rev: '1.0.1'
hooks:
- id: flynt
language_version: python3.8
language_version: python3.10
- repo: https://github.com/psf/black
rev: 22.3.0
hooks:
Expand Down
3 changes: 2 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ include LICENSE
include *.rst
include MANIFEST.in
include .coveragerc
include tox.ini
include *.ini
include *.py
include *.sh
include *.txt
include *.yaml

graft docs
graft src
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ commands =
deps =
-r requirements-test.txt
-e .
checkmanifest: checkmanifest
checkmanifest: check-manifest
django22: Django==2.2.19
django30: Django==3.0.14
django31: Django==3.1.12
Expand Down

0 comments on commit c967978

Please sign in to comment.