Skip to content

Commit

Permalink
Fix ModuleNotFoundError: No module named 'setuptools'
Browse files Browse the repository at this point in the history
  • Loading branch information
radekholy24 committed Mar 16, 2024
1 parent e6e66d5 commit d9b8740
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@ jobs:
tests:
# The type of runner that the job will run on
runs-on: ubuntu-latest

strategy:
matrix:
DJANGO_VERSION: [ '2.2.*', '3.0.*', '3.1.*', '3.2.*', '4.0.*', '4.1.*']
python-version: ['3.7', '3.8', '3.9', '3.10']
exclude:
- DJANGO_VERSION: '4.1.*'
python-version: '3.7'
python-version: '3.7'
- DJANGO_VERSION: '4.0.*'
python-version: '3.7'
python-version: '3.7'
- DJANGO_VERSION: '3.1.*'
python-version: '3.10'
- DJANGO_VERSION: '3.0.*'
Expand All @@ -52,7 +52,7 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

- name: Install
run: |
pip install flake8 isort black mypy django-stubs dj_database_url types-six types-requests types-mock
pip install setuptools flake8 isort black mypy django-stubs dj_database_url types-six types-requests types-mock
python setup.py develop
pip install -e .
pip install -r requirements.txt
Expand Down

0 comments on commit d9b8740

Please sign in to comment.