Skip to content

Commit

Permalink
Merge pull request #94 from ccurvey/2784-python39
Browse files Browse the repository at this point in the history
update to Python 3.9 and Postgres 13.5
  • Loading branch information
ccurvey authored Feb 8, 2022
2 parents ebf8baf + 475b25d commit ae4a56b
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 33 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
services:
postgres:
# Docker hub postgres image
image: postgres
image: postgres:13.5
# Postgres env vars
env:
POSTGRES_USER: postgres
Expand Down
29 changes: 0 additions & 29 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Cython==0.29.22
psycopg2-binary==2.8.5
Django==3.2.7
Django==3.2.11
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

setup(
name='daffodil',
version='0.5.15',
version='0.5.16',
author='James Robert',
description='A Super-simple DSL for filtering datasets',
license='MIT',
Expand Down
5 changes: 4 additions & 1 deletion test/tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -1554,7 +1554,7 @@ def test_known_matches(self):
val6 ?= true
val5 = 30
}
# words!
# words!
{
val5 ?= true
val5 != 30
Expand Down Expand Up @@ -1639,6 +1639,9 @@ def rel_path(*p):
'ENGINE': 'django.db.backends.postgresql_psycopg2',
'NAME': 'daffodil_hstore_test',
'USER': "postgres",
'PASSWORD': "postgres",
'HOST': '127.0.0.1',
'PORT': 5432,
}
},
DEBUG=True,
Expand Down

0 comments on commit ae4a56b

Please sign in to comment.