File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- Changes in Version 0.2.0
4
+ Changes in Version 0.1.1
5
5
------------------------
6
6
7
+ - Fixed a bug that caused Linux wheels to be created without the appropriate
8
+ ``manylinux `` platform tags.
7
9
8
10
Changes in Version 0.1.0
9
11
------------------------
Original file line number Diff line number Diff line change 11
11
# documentation root, use os.path.abspath to make it absolute, like shown here.
12
12
#
13
13
import os
14
+ import os .path as p
14
15
import sys
15
16
sys .path .insert (0 , os .path .abspath ('../..' ))
16
17
22
23
author = 'Prashant Mital'
23
24
html_show_sphinx = False
24
25
25
- # The full version, including alpha/beta/rc tags
26
- version = '0.2.0.dev0'
26
+ version_file = p .abspath (p .join ("../../" , "pymongoarrow/version.py" ))
27
+ version_data = {}
28
+ with open (version_file , 'r' ) as vf :
29
+ exec (vf .read (), {}, version_data )
30
+ version = version_data ['__version__' ]
27
31
release = version
28
32
29
33
# The name of the Pygments (syntax highlighting) style to use.
Original file line number Diff line number Diff line change 12
12
# See the License for the specific language governing permissions and
13
13
# limitations under the License.
14
14
15
- __version__ = '0.2.0.dev0 '
15
+ __version__ = '0.1.1 '
16
16
17
17
_MIN_LIBBSON_VERSION = '1.17.0'
You can’t perform that action at this time.
0 commit comments