From f613491f5c657f994ea1978f01b9a8cc94916ae5 Mon Sep 17 00:00:00 2001 From: jtshaw Date: Mon, 18 Sep 2023 11:29:02 -0700 Subject: [PATCH 1/2] Update .travis.yml Modify the travis CI setup to only build on the main branch. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index feaca96b..cd6091c5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,6 +16,9 @@ install: script: - bash scripts/run_tests.sh - test "$UPGRADES" != "" || test $TRAVIS_PYTHON_VERSION != "3.10" || bash scripts/build_docs.sh +branches: + only: + - main deploy: - provider: pages skip_cleanup: true From 8c83d4386a15a7c82b70cc7cd2e9a0764fa3d97a Mon Sep 17 00:00:00 2001 From: jtshaw Date: Mon, 18 Sep 2023 11:33:22 -0700 Subject: [PATCH 2/2] Update setup.py Updated the version number. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4aaa936a..829a69a8 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ packages.append("") setup(name='gemd', - version='1.16.2', + version='1.16.3', python_requires='>=3.7', url='http://github.com/CitrineInformatics/gemd-python', description="Python binding for Citrine's GEMD data model",