Skip to content

Commit

Permalink
version bump to 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jennyq committed Jan 18, 2023
1 parent cc916f8 commit ad351eb
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 10 deletions.
19 changes: 18 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Ignore all dotfiles...
.*
# Ignore all pyc file
__pycache__/
*.pyc
*.pyo

# except for .gitignore and .readthedocs.yml
!/.gitignore
!.readthedocs.yml

# except for .tx/config
!/.tx/

# except for .travis.yml
!/.travis.yml

# except for .flake8
!/.flake8

.DS_Store
*.egg-info
testenv
Expand Down
11 changes: 4 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,15 @@

language: python
python:
# - 2.6 # Invalid syntax in File "/home/travis/virtualenv/python2.6.9/lib/python2.6/site-packages/django/utils/lru_cache.py", line 28
- 2.7
- pypy
# - 3.2 # Invalid syntax in File "/home/travis/build/d33tah/django-admin-bootstrapped/django_admin_bootstrapped/../test_django_admin_bootstrapped/test_django_admin_bootstrapped/models.py", line 32
- 3.3
- 3.4
- 3.5
- 3.8
- 3.9
- 3.10
# - nightly # https://bugs.python.org/issue24934
- pypy3

env:
- DJANGO_VERSION=1.8
- DJANGO_VERSION=3.2

install:
pip install django-bootstrap3 django-filer Django==$DJANGO_VERSION
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
maintainer="Tendenci",
maintainer_email="[email protected]",
name='tendenci-django-admin-bootstrapped',
version='5.0',
version='5.1',
description='A Bootstrap theme for Django Admin',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='https://github.com/tendenci/django-admin-bootstrapped',
Expand All @@ -30,7 +30,7 @@
classifiers=CLASSIFIERS,
install_requires=[
'setuptools',
'Django>=2.2',
'Django>=3.2',
],
test_suite='django_admin_bootstrapped.runtests.runtests',
packages=find_packages(),
Expand Down

0 comments on commit ad351eb

Please sign in to comment.