Prepeare the 1.23 release

This commit is contained in:
Davide Andreoli 2019-10-06 08:45:57 +02:00
parent e2ce1b49a3
commit d61c596278
5 changed files with 14 additions and 3 deletions

1
.gitignore vendored
View File

@ -28,4 +28,5 @@ pip-log.txt
# Cython generated files
efl/*/*.c
efl/*/*.h
!efl/dbus_mainloop/e_dbus.*
efl/*/*.html

View File

@ -1,4 +1,12 @@
===================
2019-10-06 v1.23.0
===================
Changes:
* Switched to Cython 0.29.13 for the tarball generation
===================
2019-04-23 v1.22.0
===================

View File

@ -171,6 +171,8 @@ def get_pyapis(pxd_path, header_name, prefix):
for f in files:
# if not f.endswith(".pxd"):
# continue
if f.endswith(".pyc"):
continue
open_args = (os.path.join(path, f),)
open_kwargs = dict(mode="r")
if sys.version_info[0] > 2:

View File

@ -20,5 +20,5 @@
# pre-release: "1.13.0-beta1" ( 1, 13, 0 )
# release: "1.13.0" ( 1, 13, 0 )
__version__ = "1.22.99"
__version_info__ = ( 1, 22, 99 )
__version__ = "1.23.0"
__version_info__ = (1, 23, 0)

View File

@ -14,7 +14,7 @@ def _new_canvas():
class TestCanvasConstructor(unittest.TestCase):
def testNoConstructorArgs(self):
c = evas.Canvas(method="buffer")
self.assertEqual(c.output_method_get(), 1)
self.assertEqual(c.output_method_get(), 2)
self.assertEqual(c.size_get(), (0, 0))
self.assertEqual(c.viewport_get(), (0, 0, 1, 1))
c.delete()