Skip to content

Commit

Permalink
Merge branch 'release/0.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Apr 23, 2021
2 parents 0fc9e41 + 57da88b commit 1fe7e7b
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Expand Up @@ -11,7 +11,7 @@ jobs:
fail-fast: false
matrix:
python-version: ['3.8', '3.9']
django-version: ['3.0', '3.1']
django-version: ['3.1', '3.2']

services:

Expand Down
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
0.3.0
0.3.1
@@ -1,10 +1,12 @@
# Generated by Django 2.0.3 on 2018-03-30 17:59

import _socket
import django_audit_fields.fields.uuid_auto_field
import django_revision.revision_field
import edc_model_fields.fields.hostname_modification_field
import edc_model_fields.fields.userfield
import edc_model_fields.fields.uuid_auto_field

# import django_audit_fields.fields.uuid_auto_field
import edc_utils
from django.db import migrations, models

Expand Down Expand Up @@ -35,7 +37,7 @@ class Migration(migrations.Migration):
fields=[
(
"id",
edc_model_fields.fields.uuid_auto_field.UUIDAutoField(
django_audit_fields.fields.uuid_auto_field.UUIDAutoField(
blank=True,
editable=False,
help_text="System auto field. UUID primary key.",
Expand Down
4 changes: 2 additions & 2 deletions django_crypto_fields/migrations/0003_auto_20161124_1835.py
Expand Up @@ -2,7 +2,7 @@
# Generated by Django 1.10.3 on 2016-11-24 18:35
from __future__ import unicode_literals

import edc_model_fields.fields.uuid_auto_field
import django_audit_fields.fields.uuid_auto_field
from django.db import migrations


Expand All @@ -14,7 +14,7 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name="crypt",
name="id",
field=edc_model_fields.fields.uuid_auto_field.UUIDAutoField(
field=django_audit_fields.fields.uuid_auto_field.UUIDAutoField(
blank=True,
editable=False,
help_text="System auto field. UUID primary key.",
Expand Down
9 changes: 8 additions & 1 deletion setup.py
Expand Up @@ -25,7 +25,13 @@
long_description=README,
zip_safe=False,
keywords="django fields encryption security",
install_requires=["pycryptodome", "django_audit_fields", "edc-utils"],
install_requires=[
"pycryptodome",
"django_audit_fields",
"edc-utils>=0.3.0",
"edc-model-fields>=0.3.0",
"django-extensions",
],
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
Expand All @@ -35,6 +41,7 @@
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Security :: Cryptography",
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
@@ -1,6 +1,6 @@
[tox]
envlist =
py{37,38,39}-dj{30,31,dev}-{mysql},
py{37,38,39}-dj{30,31,32,dev}-{mysql},
lint

[gh-actions]
Expand All @@ -13,6 +13,7 @@ python =
DJANGO =
3.0: dj30
3.1: dj31
3.2: dj32
dev: djdev

[flake8]
Expand All @@ -28,6 +29,7 @@ deps =
-r https://raw.githubusercontent.com/clinicedc/edc/develop/requirements.tests/edc.txt
dj30: Django>=3.0,<3.1
dj31: Django>=3.1,<3.2
dj32: Django>=3.2,<3.3
djdev: https://github.com/django/django/tarball/master
mysql: -r https://raw.githubusercontent.com/clinicedc/edc/develop/requirements.tests/mysql.txt

Expand Down

0 comments on commit 1fe7e7b

Please sign in to comment.