@@ -7,7 +7,7 @@ Upstream: https://pypi.org/project/django-binary-database-files/
77Django Binary Database Files
88============================
99
10- [ ![ ] ( https://img.shields.io/pypi/v/django-binary-database-files.svg )] ( https://pypi.python.org/pypi/django-binary-database-files ) [ ![ Build Status] ( https://img.shields.io/travis/kimetrica/ django-binary-database-files. svg?branch=master )] ( https://travis-ci.org /kimetrica/django-binary-database-files/ ) [ ![ ] ( https://pyup.io/repos/github/kimetrica/django-binary-database-files/shield.svg )] ( https://pyup.io/repos/github/kimetrica/django-binary-database-files )
10+ [ ![ ] ( https://img.shields.io/pypi/v/django-binary-database-files.svg )] ( https://pypi.python.org/pypi/django-binary-database-files ) [ ![ Build Status] ( https://github.com/Kimetrica/ django-binary-database-files/actions/workflows/test.yml/badge. svg )] ( https://github.com /kimetrica/django-binary-database-files/actions ) [ ![ ] ( https://pyup.io/repos/github/kimetrica/django-binary-database-files/shield.svg )] ( https://pyup.io/repos/github/kimetrica/django-binary-database-files )
1111
1212This is a storage system for Django that stores uploaded
1313files in binary fields in the database. Files can be served from the database
@@ -101,27 +101,27 @@ Development
101101
102102Code should be linted with:
103103
104- ./pep8 .sh
104+ ./lint .sh
105105
106106Tests require the Python development headers to be installed, which you can install on Ubuntu with:
107107
108- sudo apt-get install python3-dev python3.6 -dev
108+ sudo apt-get install python3.12-minimal python3.12 -dev
109109
110110To run unittests across multiple Python versions, install:
111111
112- sudo apt-get install python3.6 -minimal python3.6 -dev python3.7 -minimal python3.7 -dev
112+ sudo apt-get install python3.10 -minimal python3.10 -dev python3.11 -minimal python3.11-dev python3.12-minimal python3.12 -dev
113113
114114To run all [ tests] ( http://tox.readthedocs.org/en/latest/ ) :
115115
116116 export TESTNAME=; tox
117117
118- To run tests for a specific environment (e.g. Python 3.6 with Django 2.2 ):
118+ To run tests for a specific environment (e.g. Python 3.12 with Django 5.0 ):
119119
120- export TESTNAME=; tox -e py36-django22
120+ export TESTNAME=; tox -e py312-django50
121121
122122To run a specific test:
123123
124- export TESTNAME=.test_adding_file; tox -e py36-django22
124+ export TESTNAME=.test_adding_file; tox -e py312-django50
125125
126126To build and deploy a versioned package to PyPI, verify [ all unittests are passing] ( https://travis-ci.com/kimetrica/django-binary-database-files/ ) , then increase (and commit) the version number in ` binary_database_files/__init__.py ` and then run:
127127
0 commit comments