Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Django 4.0, Remove support to older Django and Python versions and improvements #35

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/python-tox.yml
@@ -0,0 +1,23 @@
name: Python package

on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.5', '3.6', '3.8', '3.10']

steps:
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox
17 changes: 17 additions & 0 deletions .gitignore
Expand Up @@ -9,6 +9,8 @@ __pycache__/
.Python
env/
.env/
venv*/
.venv/
build/
develop-eggs/
dist/
Expand Down Expand Up @@ -59,3 +61,18 @@ target/

# Collected static
/example/static

# Eclipse
.settings
.project
.pydevproject
.directory

# IDEA / PyCharm
.idea
*.iml
*.ipr
*.iws

# VS Code
.vscode/
1 change: 0 additions & 1 deletion .idea/.name

This file was deleted.

15 changes: 0 additions & 15 deletions .idea/django-searchable-select.iml

This file was deleted.

14 changes: 0 additions & 14 deletions .idea/misc.xml

This file was deleted.

8 changes: 0 additions & 8 deletions .idea/modules.xml

This file was deleted.

6 changes: 0 additions & 6 deletions .idea/vcs.xml

This file was deleted.