diff --git a/deploy.sh b/deploy.sh index 5cde6693558592f292e5b0ed115506088c7680cc..ab37f08707e77085698efe36b9a857116e2f1654 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 c916177bfa9760d92a9fc345466541fd87ce6a73..b39397fcd413af2940775c20569ae882773be803 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', } )