From fcac5b0df6142caff650d65055cb548646d70125 Mon Sep 17 00:00:00 2001 From: Ken Kroenlein Date: Tue, 23 Apr 2024 10:48:16 -0600 Subject: [PATCH] Remove Travis dependence for testing, build & deploy --- .travis.yml | 39 --------------------------------------- gemd/__version__.py | 2 +- scripts/build_docs.sh | 4 ---- 3 files changed, 1 insertion(+), 44 deletions(-) delete mode 100644 .travis.yml delete mode 100755 scripts/build_docs.sh diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d14c2c6d..00000000 --- a/.travis.yml +++ /dev/null @@ -1,39 +0,0 @@ -language: python -dist: focal -python: -- '3.8' -- '3.9' -- '3.10' -- '3.11' -- '3.12' -env: - - UPGRADES="-U --only-binary 'pint,pandas' pint pandas" - - UPGRADES="" -install: - - pip install --only-binary ':all:' -r requirements.txt - - pip install --only-binary ':all:' -r test_requirements.txt - - pip install $UPGRADES -e . -script: -- bash scripts/run_tests.sh -- test "$UPGRADES" != "" || test $TRAVIS_PYTHON_VERSION != "3.10" || bash scripts/build_docs.sh -branches: - only: - - main - - /^v[\.0-9]+$/ -deploy: - - provider: pages - skip_cleanup: true - github_token: "$GH_SECRET_TOKEN" - keep_history: true - local_dir: "./docs/_build/html/" - on: - tags: true - python: '3.10' # only need this to run once - env: UPGRADES="" - - provider: pypi - user: "__token__" - password: "$PYPI_API_TOKEN" - distributions: "sdist bdist_wheel" - skip_existing: true - on: - tags: true diff --git a/gemd/__version__.py b/gemd/__version__.py index 4eabd0b3..e835b9d0 100644 --- a/gemd/__version__.py +++ b/gemd/__version__.py @@ -1 +1 @@ -__version__ = "2.1.2" +__version__ = "2.1.3" diff --git a/scripts/build_docs.sh b/scripts/build_docs.sh deleted file mode 100755 index 97bd975c..00000000 --- a/scripts/build_docs.sh +++ /dev/null @@ -1,4 +0,0 @@ -pip install -r doc_requirements.txt -cd docs -make html -touch _build/html/.nojekyll