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

Post transfer updates #162

Merged
merged 3 commits into from
May 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,24 @@ jobs:
django-version: 4.0
fail-fast: false
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'

- name: Install dependencies
run: |
pip install -U pip
pip install -r requirements.txt
pip install "Django~=${{ matrix.django-version }}.0" .

- name: Run Tests
run: |
echo "$(python --version) / Django $(django-admin --version)"
python -m unittest discover
coverage run --source=dj_database_url --branch -m unittest discover
coverage report
coverage xml

- uses: codecov/codecov-action@v2
41 changes: 0 additions & 41 deletions .travis.yml

This file was deleted.

1 change: 0 additions & 1 deletion manifest.in

This file was deleted.

1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
coverage
17 changes: 6 additions & 11 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,38 +7,33 @@
setup(
name="dj-database-url",
version="0.5.0",
url="https://github.com/jacobian/dj-database-url",
url="https://github.com/jazzband/dj-database-url",
license="BSD",
author="Kenneth Reitz",
author_email="me@kennethreitz.com",
description="Use Database URLs in your Django Application.",
long_description=readme,
py_modules=["dj_database_url"],
install_requires=["Django>1.11"],
install_requires=["Django>3.2"],
zip_safe=False,
include_package_data=True,
platforms="any",
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 1.11",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)