Skip to content

Commit

Permalink
Release v1.0.3
Browse files Browse the repository at this point in the history
This release replaces nose with pytest
  • Loading branch information
gergondet committed Oct 28, 2022
1 parent aacd322 commit 8915a2b
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
echo "REJECTION=Upstream version in debian/changelog does not match tag" >> $GITHUB_ENV
head -n 1 debian/changelog | grep -q "python-eigen (${VERSION}"
echo "REJECTION=Conan package version does not match tag" >> $GITHUB_ENV
grep -q ' version = "${VERSION}"' conanfile.py
grep -q "version = \"${VERSION}\"" conanfile.py
echo "REJECTION=" >> $GITHUB_ENV
export TAG=`echo ${{ github.ref }} | sed -e 's@refs/tags/@@'`
echo "RELEASE_TAG=${TAG}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sources/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
echo "REJECTION=Upstream version in debian/changelog does not match tag" >> $GITHUB_ENV
head -n 1 debian/changelog | grep -q "python-eigen (${VERSION}"
echo "REJECTION=Conan package version does not match tag" >> $GITHUB_ENV
grep -q ' version = "${VERSION}"' conanfile.py
grep -q "version = \"${VERSION}\"" conanfile.py
echo "REJECTION=" >> $GITHUB_ENV
export TAG=`echo ${{ github.ref }} | sed -e 's@refs/tags/@@'`
echo "RELEASE_TAG=${TAG}" >> $GITHUB_ENV
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
cmake_minimum_required(VERSION 2.8)

project(Eigen3ToPython)
set(PROJECT_VERSION 1.0.2)
set(PROJECT_VERSION 1.0.3)

find_package(Eigen3 NO_CMAKE_PACKAGE_REGISTRY)
if(NOT Eigen3_FOUND)
Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def enable_python2_and_python3(options):

class Eigen3ToPythonConan(ConanFile):
name = "Eigen3ToPython"
version = "1.0.2"
version = "1.0.3"
description = "Python bindings for the Eigen library"
# topics can get used for searches, GitHub topics, Bintray tags etc. Add here keywords about the library
topics = ("eigen", "python")
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
python-eigen (1.0.3-1debian1) unstable; urgency=medium

* Updated upstream version

-- Pierre Gergondet <[email protected]> Thu, 27 Oct 2022 17:50:10 -0700

python-eigen (1.0.2-1ubuntu1) unstable; urgency=medium

* Updated upstream version
Expand Down

0 comments on commit 8915a2b

Please sign in to comment.