File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- #!/usr/bin/env python
2- # -*- coding: utf-8 -*-
1+ # -*- coding: utf-8; -*-
32################################################################################
43#
54# sqlalchemy-pervasive -- SQLAlchemy Dialect for Pervasive PSQL
6- # Copyright © 2013 Sacramento Natural Foods Co-op, Inc
5+ # Copyright © 2013-2018 Sacramento Natural Foods Co-op, Inc
76#
87# This file is part of sqlalchemy-pervasive.
98#
2221#
2322################################################################################
2423
24+ from __future__ import unicode_literals , absolute_import
2525
2626import os .path
2727from setuptools import setup , find_packages
2828
2929
3030here = os .path .abspath (os .path .dirname (__file__ ))
31- execfile ( os .path .join (here , 'sqlalchemy_pervasive' , '_version.py' ))
31+ exec ( open ( os .path .join (here , 'sqlalchemy_pervasive' , '_version.py' )). read ( ))
3232
3333README = open (os .path .join (here , 'README.rst' )).read ()
3434CHANGES = open (os .path .join (here , 'CHANGES.rst' )).read ()
You can’t perform that action at this time.
0 commit comments