diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d14c2c6..0000000 --- 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 4eabd0b..e835b9d 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 97bd975..0000000 --- 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