Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SC-95272: Remove support for Python 3.3 #394

Merged
merged 3 commits into from
Nov 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 0 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,18 +134,6 @@ jobs:
include:
- python-version: 2.7
framework: FLASK_VERSION=0.9
- python-version: 3.3
framework: FLASK_VERSION=0.10.1
- python-version: 3.3
framework: FLASK_VERSION=0.11.1
- python-version: 3.3
framework: FLASK_VERSION=0.12.4
- python-version: 3.3
framework: FLASK_VERSION=1.0.2
- python-version: 3.3
framework: DJANGO_VERSION=1.6.11
- python-version: 3.3
framework: DJANGO_VERSION=1.8.19
- python-version: 3.4
framework: DJANGO_VERSION=1.7.11
- python-version: 3.4
Expand Down Expand Up @@ -185,11 +173,6 @@ jobs:
- name: Install dependencies
run: pip install setuptools==39.2.0 --force-reinstall

- name: Python 3.3 dependencies
if: ${{ matrix.python-version == '3.3' }}
run: pip install --force-reinstall \
Werkzeug==0.14.1 six>=1.9.0 requests>=0.12.1 enum34 unittest2 blinker webob

- name: Set the framework
run: echo ${{ matrix.framework }} >> $GITHUB_ENV

Expand Down
5 changes: 0 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
Expand Down Expand Up @@ -86,10 +85,6 @@
'requests>=0.12.1; python_version >= "3.6"',
'requests<2.26,>=0.12.1; python_version == "3.5"',
'requests<2.22,>=0.12.1; python_version == "3.4"',
'requests<2.19,>=0.12.1; python_version == "3.3"',
'requests<1.2,>=0.12.1; python_version == "3.2"',
'requests<1.2,>=0.12.1; python_version == "3.1"',
'requests<1.2,>=0.12.1; python_version == "3.0"',
'six>=1.9.0'
],
tests_require=tests_require,
Expand Down