mirror of
https://github.com/capnproto/pycapnp.git
synced 2025-03-04 08:24:43 +01:00
Revert version back to v0.2.0 now that it's all working on pypi
This commit is contained in:
parent
07eb561661
commit
93289e53cf
2 changed files with 7 additions and 9 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -33,3 +33,9 @@ nosetests.xml
|
|||
.mr.developer.cfg
|
||||
.project
|
||||
.pydevproject
|
||||
|
||||
# Cpp files
|
||||
capnp/*.cpp
|
||||
|
||||
capnp/version.py
|
||||
MANIFEST
|
||||
|
|
10
setup.py
10
setup.py
|
@ -8,20 +8,12 @@ except ImportError:
|
|||
if Cython.__version__ < '0.19.1':
|
||||
raise RuntimeError('Old cython installed. Please run `pip install -U cython`')
|
||||
|
||||
try:
|
||||
import setuptools
|
||||
except ImportError:
|
||||
raise RuntimeError('No setuptools installed. Please run `pip install setuptools`')
|
||||
|
||||
if setuptools.__version__ < '.0.9.8':
|
||||
raise RuntimeError('Old setuptools installed. Please run `pip install -U setuptools`')
|
||||
|
||||
from distutils.core import setup
|
||||
import os
|
||||
|
||||
MAJOR = 0
|
||||
MINOR = 2
|
||||
MICRO = 8
|
||||
MICRO = 0
|
||||
VERSION = '%d.%d.%d' % (MAJOR, MINOR, MICRO)
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue