Skip to content

Commit

Permalink
Post-release cleanup
Browse files Browse the repository at this point in the history
* Fixed problems with twine upload of releases
* Bumped the version to 1.0.3
* Tweaked some text in the README
* Added 2017 to the LICENSE
  • Loading branch information
jwiggins committed Oct 10, 2017
1 parent 7062a25 commit 089f5cd
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ matrix:
env:
- BUILD_TYPE="package"
- DOCKER_IMAGE=quay.io/pypa/manylinux1_x86_64
- TWINE_USENAME=jwiggins
- TWINE_USERNAME=jwiggins
# TWINE_PASSWORD is in Travis settings

before_install:
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
The MIT License (MIT)

Copyright (c) 2014-2015 WUSTL ZPLAB
Copyright (c) 2016 Celiagg Contributors
Copyright (c) 2016-2017 Celiagg Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 2 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ celiagg provides a simple, stateless canvas object that uses
Anti-Grain Geometry 2.4 <svn://svn.code.sf.net/p/agg/svn> with Cython to
render directly into a Numpy array.

A respectably modern compiler is required to build celiagg
(one supporting certain C++11 features).
A respectably modern C++ compiler is required to build celiagg

`Documentation! <https://celiagg.github.io/celiagg/>`_

Expand All @@ -35,7 +34,7 @@ Dependencies
------------

* Numpy
* Cython
* Cython (build-time only)
* Freetype2 (optional)

Contributing
Expand Down
4 changes: 2 additions & 2 deletions ci/build-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ python setup.py sdist

# Upload to PyPI
pip install twine
twine upload -u jwiggins wheelhouse/celiagg-*.whl
twine upload -u jwiggins dist/celiagg-*.tar.gz
twine upload wheelhouse/celiagg-*.whl
twine upload dist/celiagg-*.tar.gz
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0.2'
version = '1.0.3'
# The full version, including alpha/beta/rc tags.
release = '1.0.2'
release = '1.0.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def configuration(parent_package='', top_path=None):
name='celiagg',
configuration=configuration,
license='MIT',
version='1.0.2',
version='1.0.3',
description='Anti-Grain Geometry for Python (2 & 3) with Cython',
long_description=long_description,
url='https://github.com/celiagg/celiagg',
Expand Down

0 comments on commit 089f5cd

Please sign in to comment.