Skip to content

Commit ef71e3b

Browse files
authored
Merge pull request #84 from nschloe/setup.cfg-fixes
Setup.cfg fixes
2 parents b706acd + 97f1087 commit ef71e3b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ tag:
1010
# git push --tags
1111
curl -H "Authorization: token `cat $(HOME)/.github-access-token`" -d '{"tag_name": "v$(VERSION)"}' https://api.github.com/repos/nschloe/pygalmesh/releases
1212

13-
upload: setup.py
13+
upload:
1414
# Make sure we're on the master branch
1515
@if [ "$(shell git rev-parse --abbrev-ref HEAD)" != "master" ]; then exit 1; fi
1616
rm -rf dist/*
1717
python3 setup.py sdist
1818
twine upload dist/*.tar.gz
1919
# HTTPError: 400 Client Error: Binary wheel 'pygalmesh-0.2.0-cp27-cp27mu-linux_x86_64.whl' has an unsupported platform tag 'linux_x86_64'. for url: https://upload.pypi.org/legacy/
20-
# python3 setup.py bdist_wheel --universal
20+
# python3 setup.py bdist_wheel
2121
# twine upload dist/*.whl
2222

2323
publish: tag upload

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[metadata]
22
name = pygalmesh
3-
version = 0.6.3
3+
version = 0.6.4
44
url = https://github.com/nschloe/pygalmesh
55
author = Nico Schlömer
66
email = nico.schloemer@gmail.com
77
description = Python frontend to CGAL's 3D mesh generation capabilities
88
long_description = file: README.md
99
long_description_content_type = text/markdown
10-
license = GPLv3
10+
license = GPL-3.0-or-later
1111
license_files = LICENSE
1212
classifiers =
1313
Development Status :: 4 - Beta

0 commit comments

Comments
 (0)