Skip to content

Commit 73cb671

Browse files
committed
version patch to handle pypi error
1 parent 58b19d5 commit 73cb671

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
project('pyensmallen',
22
['cpp'],
3-
version: '0.2.5',
3+
version: '0.2.9',
44
default_options: ['cpp_std=c++14'])
55

66
py = import('python').find_installation(pure: false)
@@ -29,4 +29,4 @@ py.install_sources(
2929
],
3030
pure: false,
3131
subdir: 'pyensmallen'
32-
)
32+
)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ skip = ["cp36-*", "*-win32", "*-manylinux_i686"]
1313

1414
[project]
1515
name = 'pyensmallen'
16-
version = '0.2.7'
16+
version = '0.2.9'
1717
description = 'Python bindings for the Ensmallen library.'
1818
readme = 'README.md'
1919
requires-python = '>=3.10'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from setuptools.command.build_ext import build_ext
77
from setuptools.dist import Distribution
88

9-
__version__ = "0.2.7"
9+
__version__ = "0.2.9"
1010

1111

1212
class BinaryDistribution(Distribution):

0 commit comments

Comments
 (0)