From 2aaab9a2a4c87bb5ce3f4764438cba232d51cb1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= <moebius@cs.rwth-aachen.de> Date: Tue, 8 Mar 2022 10:51:18 +0100 Subject: [PATCH] Prepared scripts for 1.2.0 upload --- deploy.sh | 4 ++-- setup.py | 9 +++------ 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/deploy.sh b/deploy.sh index 5cde669..ab37f08 100755 --- a/deploy.sh +++ b/deploy.sh @@ -7,9 +7,9 @@ revision=${1:-master} -for name in "deploy-sdist" "deploy-2.7-macos" "deploy-3.5-macos" "deploy-2.7-linux" "deploy-3.5-linux" "deploy-3.7-VS2017" +for name in "deploy-sdist" "deploy-3.9-macos-m1" "deploy-3.9-macos" "deploy-3.9-linux" "deploy-3.9-VS2017" do - wget "https://www.graphics.rwth-aachen.de:9000/OpenMesh/openmesh-python/-/jobs/artifacts/$revision/download?job=$name" -O "$name.zip" + wget "https://gitlab.vci.rwth-aachen.de:9000/OpenMesh/openmesh-python/-/jobs/artifacts/$revision/download?job=$name" -O "$name.zip" unzip "$name.zip" rm -f "$name.zip" done diff --git a/setup.py b/setup.py index c916177..b39397f 100644 --- a/setup.py +++ b/setup.py @@ -81,7 +81,7 @@ class CMakeBuild(build_ext): setup( name='openmesh', - version="1.1.6", + version="1.2.0", author='Alexander Dielen, Isaak Lim, Janis Born', author_email='vci-pypi@cs.rwth-aachen.de', description='a versatile halfedge-based data structure for representing and manipulating polygon meshes', @@ -97,14 +97,11 @@ setup( url='https://www.graphics.rwth-aachen.de:9000/OpenMesh/openmesh-python', classifiers=[ 'Development Status :: 4 - Beta', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.9', 'Topic :: Multimedia :: Graphics', ], project_urls={ - 'Source':'https://www.graphics.rwth-aachen.de:9000/OpenMesh/openmesh-python', - 'Tracker':'https://www.graphics.rwth-aachen.de:9000/OpenMesh/openmesh-python/issues', + 'Source':'https://gitlab.vci.rwth-aachen.de:9000/OpenMesh/openmesh-python', + 'Tracker':'https://gitlab.vci.rwth-aachen.de:9000/OpenMesh/openmesh-python/issues', } ) -- GitLab