summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Daily <kdaily@users.noreply.github.com>2021-05-26 15:22:28 -0700
committerGitHub <noreply@github.com>2021-05-26 15:22:28 -0700
commite7063e87477c1fda69cb4b5444cb68a781dfa43f (patch)
treec6e04422b2a864d6cbb553aee798267672e92f88
parent91ba037e54ef521c379263b0ac769c66182527d7 (diff)
parent540ea3bc9b205ec5e8e04a4bfa4b1d90341b65b9 (diff)
downloadboto-e7063e87477c1fda69cb4b5444cb68a781dfa43f.tar.gz
Merge pull request #3922 from boto/add-deprecation-notices
Add deprecation notices
-rw-r--r--.github/.workflows/main.yml13
-rw-r--r--.github/ISSUE_TEMPLATES/new_issue.yaml10
-rw-r--r--.travis.yml57
-rw-r--r--README.rst27
4 files changed, 30 insertions, 77 deletions
diff --git a/.github/.workflows/main.yml b/.github/.workflows/main.yml
new file mode 100644
index 00000000..e5990e2b
--- /dev/null
+++ b/.github/.workflows/main.yml
@@ -0,0 +1,13 @@
+name: PRs are not reviewed
+
+on:
+ pull_request
+
+jobs:
+ fail:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Fail PRs
+ run: |
+ echo "This repository is not maintained and PRs are not reviewed. Please use the 'boto3' package (https://github.com/boto/boto3/)."
+ exit 1
diff --git a/.github/ISSUE_TEMPLATES/new_issue.yaml b/.github/ISSUE_TEMPLATES/new_issue.yaml
new file mode 100644
index 00000000..6ec43dd4
--- /dev/null
+++ b/.github/ISSUE_TEMPLATES/new_issue.yaml
@@ -0,0 +1,10 @@
+---
+name: New issue
+about: Create an issue
+title: ''
+assignees: ''
+
+---
+
+This package is no longer maintained and has been replaced by [`boto3`](https://github.com/boto/boto3). Issues and pull requests are not reviewed.
+If you are having an issue with the [`boto3`](https://github.com/boto/boto3) package or the [AWS CLI](https://github.com/aws/aws-cli), please open an issue on their respective repositories.
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 4a7f0fc0..00000000
--- a/.travis.yml
+++ /dev/null
@@ -1,57 +0,0 @@
-language: python
-
-# Some versions of python only work on certain platforms. Specifying the distribution
-# to ensure the version of python will run without issue.
-matrix:
- include:
- # Trusty Tests
- - os: linux
- dist: trusty
- python: "pypy"
- - os: linux
- dist: trusty
- python: "2.6"
- - os: linux
- dist: trusty
- python: "3.3"
- - os: linux
- dist: trusty
- python: "3.4"
- # Xenial Tests
- - os: linux
- dist: xenial
- python: "2.7"
- - os: linux
- dist: xenial
- python: "3.5"
- - os: linux
- dist: xenial
- python: "3.6"
- - os: linux
- dist: xenial
- python: "3.7"
- - os: linux
- dist: xenial
- python: "pypy3.5"
- allow_failures:
- - python: "3.7"
-
-env:
- - BOTO_CONFIG=/tmp/nowhere
-
-before_install:
- - if [ "$TRAVIS_PULL_REQUEST" != "false" ] && [ "$TRAVIS_BRANCH" == "master" ]; then
- echo "No pull requests can be sent to the master branch" 1>&2;
- exit 1;
- fi
- - sudo apt-get update
- - sudo apt-get --reinstall install -qq language-pack-en language-pack-de
- - sudo apt-get install swig
-
-install:
- - pip install -U 'setuptools<40'
- - if [[ $TRAVIS_PYTHON_VERSION == 2* ]]; then travis_retry pip install -r requirements-py26.txt; fi
- - if [[ $TRAVIS_PYTHON_VERSION == 3.3 ]]; then travis_retry pip install -r requirements-py33.txt; fi
- - travis_retry pip install -r requirements.txt
-
-script: python tests/test.py default
diff --git a/README.rst b/README.rst
index 8bee5baa..33a4a62b 100644
--- a/README.rst
+++ b/README.rst
@@ -1,33 +1,20 @@
####
+Deprecation notice
+####
+
+**This package is no longer maintained and has been replaced by** `Boto3 <https://github.com/boto/boto3>`__.
+**Issues and pull requests are not reviewed. If you are having an issue with the** `Boto3 <https://github.com/boto/boto3>`__ **package or the** `AWS CLI <https://github.com/aws/aws-cli>`__, **please open an issue on their respective repositories.**
+
+####
boto
####
boto 2.49.0
Released: 11-July-2018
-.. image:: https://travis-ci.org/boto/boto.svg?branch=develop
- :target: https://travis-ci.org/boto/boto
-
.. image:: https://pypip.in/d/boto/badge.svg
:target: https://pypi.python.org/pypi/boto/
-******
-Boto 3
-******
-
-`Boto3 <https://github.com/boto/boto3>`__, the next version of Boto, is now
-stable and recommended for general use. It can be used side-by-side with Boto
-in the same project, so it is easy to start using Boto3 in your existing
-projects as well as new projects. Going forward, API updates and all new
-feature work will be focused on Boto3.
-
-To assist users who still depend on Boto and cannot immediately switch over, we
-will be triaging and addressing critical issues and PRs in Boto in the short
-term. As more users make the switch to Boto3, we expect to reduce our
-maintenance involvement over time. If we decide on a cutoff date or any
-significant changes to our maintenance plan, we will make pre-announcements
-well ahead of schedule to allow ample time for our users to adapt/migrate.
-
************
Introduction