a16febdfdb
* Also switch to GitHub for a while to update to the latest commit that contain adjustments for newer Django versions and add a patch to fix the build in this state. * Sort the variables a bit according to the PHB and remove superfluous trailing slash of the Github URL while I'm here. Changelog: https://github.com/lazybird/django-solo/compare/1.1.3...master PR: 246171 Approved by: <rozhuk.im@gmail.com> (maintainer)
12 lines
281 B
Python
12 lines
281 B
Python
Import internal "os" module to avoid errors during configuration phase.
|
|
|
|
--- setup.py.orig 2020-05-04 08:55:04 UTC
|
|
+++ setup.py
|
|
@@ -1,5 +1,6 @@
|
|
from setuptools import setup, find_packages
|
|
|
|
+import os
|
|
import solo
|
|
|
|
README = os.path.join(os.path.dirname(__file__), 'README.rst')
|