Skip to content

Commit

Permalink
prepare 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthieuDartiailh committed Mar 25, 2020
1 parent b04d5d3 commit a9abba5
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
5 changes: 5 additions & 0 deletions .travis.yml
Expand Up @@ -16,12 +16,17 @@ branches:

jobs:
include:
- name: "run test suite with python 3.5"
python: 3.5
- name: "run test suite with python 3.6"
python: 3.6
- name: "run test suite with python 3.7"
python: 3.7
- name: "run test suite with python 3.8"
python: 3.8
- name: "run test suite with python 3.6 on ARM64"
arch: arm64
python: 3.5
- name: "run test suite with python 3.6 on ARM64"
arch: arm64
python: 3.6
Expand Down
6 changes: 3 additions & 3 deletions docs/source/conf.py
Expand Up @@ -20,13 +20,13 @@
# -- Project information -----------------------------------------------------

project = 'kiwisolver'
copyright = '2018, Nucleic team'
copyright = '2018-2020, Nucleic team'
author = 'Nucleic team'

# The short X.Y version
version = ''
version = '1.2'
# The full version, including alpha/beta/rc tags
release = ''
release = '1.2.0'


# -- General configuration ---------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions kiwi/version.h
@@ -1,5 +1,5 @@
/*-----------------------------------------------------------------------------
| Copyright (c) 2013-2019, Nucleic Development Team.
| Copyright (c) 2013-2020, Nucleic Development Team.
|
| Distributed under the terms of the Modified BSD License.
|
Expand All @@ -10,5 +10,5 @@
#define KIWI_MAJOR_VERSION 1
#define KIWI_MINOR_VERSION 2
#define KIWI_MICRO_VERSION 0
#define KIWI_VERSION_HEX 0x010001
#define KIWI_VERSION_HEX 0x010200
#define KIWI_VERSION "1.2.0"
2 changes: 1 addition & 1 deletion py/kiwisolver.cpp
Expand Up @@ -9,7 +9,7 @@
#include <kiwi/kiwi.h>
#include "types.h"

#define PY_KIWI_VERSION "1.2.0.dev"
#define PY_KIWI_VERSION "1.2.0"

namespace
{
Expand Down
7 changes: 4 additions & 3 deletions setup.py
@@ -1,5 +1,5 @@
#------------------------------------------------------------------------------
# Copyright (c) 2013-2017, Nucleic Development Team.
# Copyright (c) 2013-2020, Nucleic Development Team.
#
# Distributed under the terms of the Modified BSD License.
#
Expand Down Expand Up @@ -58,7 +58,7 @@ def build_extensions(self):

setup(
name='kiwisolver',
version='1.2.0.dev',
version='1.2.0',
author='The Nucleic Development Team',
author_email='sccolbert@gmail.com',
url='https://github.com/nucleic/kiwi',
Expand All @@ -72,10 +72,11 @@ def build_extensions(self):
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
],
python_requires='>=3.5',
setup_requires=['cppy'],
setup_requires=['cppy>=1.2.0'],
ext_modules=ext_modules,
cmdclass={'build_ext': BuildExt},
)

0 comments on commit a9abba5

Please sign in to comment.