Skip to content

Commit 8915a2b

Browse files
committed
Release v1.0.3
This release replaces nose with pytest
1 parent aacd322 commit 8915a2b

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.github/workflows/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
echo "REJECTION=Upstream version in debian/changelog does not match tag" >> $GITHUB_ENV
3535
head -n 1 debian/changelog | grep -q "python-eigen (${VERSION}"
3636
echo "REJECTION=Conan package version does not match tag" >> $GITHUB_ENV
37-
grep -q ' version = "${VERSION}"' conanfile.py
37+
grep -q "version = \"${VERSION}\"" conanfile.py
3838
echo "REJECTION=" >> $GITHUB_ENV
3939
export TAG=`echo ${{ github.ref }} | sed -e 's@refs/tags/@@'`
4040
echo "RELEASE_TAG=${TAG}" >> $GITHUB_ENV

.github/workflows/sources/package.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
echo "REJECTION=Upstream version in debian/changelog does not match tag" >> $GITHUB_ENV
5858
head -n 1 debian/changelog | grep -q "python-eigen (${VERSION}"
5959
echo "REJECTION=Conan package version does not match tag" >> $GITHUB_ENV
60-
grep -q ' version = "${VERSION}"' conanfile.py
60+
grep -q "version = \"${VERSION}\"" conanfile.py
6161
echo "REJECTION=" >> $GITHUB_ENV
6262
export TAG=`echo ${{ github.ref }} | sed -e 's@refs/tags/@@'`
6363
echo "RELEASE_TAG=${TAG}" >> $GITHUB_ENV

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
cmake_minimum_required(VERSION 2.8)
66

77
project(Eigen3ToPython)
8-
set(PROJECT_VERSION 1.0.2)
8+
set(PROJECT_VERSION 1.0.3)
99

1010
find_package(Eigen3 NO_CMAKE_PACKAGE_REGISTRY)
1111
if(NOT Eigen3_FOUND)

conanfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def enable_python2_and_python3(options):
2828

2929
class Eigen3ToPythonConan(ConanFile):
3030
name = "Eigen3ToPython"
31-
version = "1.0.2"
31+
version = "1.0.3"
3232
description = "Python bindings for the Eigen library"
3333
# topics can get used for searches, GitHub topics, Bintray tags etc. Add here keywords about the library
3434
topics = ("eigen", "python")

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
python-eigen (1.0.3-1debian1) unstable; urgency=medium
2+
3+
* Updated upstream version
4+
5+
-- Pierre Gergondet <pierre.gergondet+ppa@gmail.com> Thu, 27 Oct 2022 17:50:10 -0700
6+
17
python-eigen (1.0.2-1ubuntu1) unstable; urgency=medium
28

39
* Updated upstream version

0 commit comments

Comments
 (0)