Skip to content

Commit

Permalink
Merge 3d8820d into d1513fa
Browse files Browse the repository at this point in the history
  • Loading branch information
charettes committed Jan 26, 2021
2 parents d1513fa + 3d8820d commit ea172ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
7 changes: 4 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
#!/usr/bin/env python
from __future__ import unicode_literals

from setuptools import find_packages, setup

with open("README.rst") as file_:
long_description = file_.read()

setup(
name="django-syzygy",
version="0.0.1",
version="0.1.0a1",
description="",
long_description=long_description,
url="https://github.com/charettes/django-syzygy",
Expand All @@ -22,13 +20,16 @@
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ envlist =
flake8,
isort,
mypy,
py{36,37,38,39}-{2.2,3.0,3.1,master},
py{36,37,38,39}-{2.2,3.0,3.1,master}-postgresql,
py{36,37,38,39}-{2.2,3.0,3.1,3.2,master},
py{36,37,38,39}-{2.2,3.0,3.1,3.2,master}-postgresql,

[gh-actions]
python =
Expand Down Expand Up @@ -37,6 +37,7 @@ deps =
2.2: Django>=2.2,<3
3.0: Django>=3.0,<3.1
3.1: Django>=3.1,<3.2
3.2: Django>=3.2a1,<4
master: https://github.com/django/django/archive/master.tar.gz
postgresql: psycopg2-binary
ignore_outcome =
Expand Down

0 comments on commit ea172ec

Please sign in to comment.