Compare commits

...

2 Commits

Author SHA1 Message Date
Jose Diaz-Gonzalez
5a71bc5e5a Release version 0.37.2 2021-01-01 21:31:06 -05:00
Jose Diaz-Gonzalez
794ccf3996 fix: use distutils.core on error 2021-01-01 21:30:54 -05:00
3 changed files with 30 additions and 4 deletions

View File

@@ -1,10 +1,18 @@
Changelog Changelog
========= =========
0.37.1 (2021-01-01) 0.37.2 (2021-01-01)
------------------- -------------------
------------ ------------
Fix
~~~
- Use distutils.core on error. [Jose Diaz-Gonzalez]
0.37.1 (2021-01-02)
-------------------
Fix Fix
~~~ ~~~
- Use twine for releases. [Jose Diaz-Gonzalez] - Use twine for releases. [Jose Diaz-Gonzalez]
@@ -18,6 +26,10 @@ Fix
- Set long description type - Set long description type
- Gitignore the temporary readme file - Gitignore the temporary readme file
Other
~~~~~
- Release version 0.37.1. [Jose Diaz-Gonzalez]
0.37.0 (2021-01-02) 0.37.0 (2021-01-02)
------------------- -------------------

View File

@@ -1 +1 @@
__version__ = '0.37.1' __version__ = '0.37.2'

View File

@@ -1,10 +1,24 @@
#!/usr/bin/env python #!/usr/bin/env python
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import os import os
from setuptools import setup
from github_backup import __version__ from github_backup import __version__
try:
from setuptools import setup
setup # workaround for pyflakes issue #13
except ImportError:
from distutils.core import setup
# Hack to prevent stupid TypeError: 'NoneType' object is not callable error on
# exit of python setup.py test # in multiprocessing/util.py _exit_function when
# running python setup.py test (see
# http://www.eby-sarna.com/pipermail/peak/2010-May/003357.html)
try:
import multiprocessing
multiprocessing
except ImportError:
pass
def open_file(fname): def open_file(fname):
return open(os.path.join(os.path.dirname(__file__), fname)) return open(os.path.join(os.path.dirname(__file__), fname))