Skip to content

Commit 5e55e49

Browse files
author
Joey Leingang
committed
drop python 3.4 support
1 parent 82af3f5 commit 5e55e49

File tree

6 files changed

+4
-12
lines changed

6 files changed

+4
-12
lines changed

.circleci/config.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,6 @@ jobs:
4343
- run:
4444
<<: *dependencies
4545
- run: make validate
46-
test_py34:
47-
docker:
48-
- image: circleci/python:3.4-stretch
49-
<<: *test_boilerplate
5046
test_py35:
5147
docker:
5248
- image: circleci/python:3.5-stretch
@@ -78,15 +74,13 @@ workflows:
7874
jobs:
7975
- temple_check
8076
- lint
81-
- test_py34
8277
- test_py35
8378
- test_py36
8479
- test_py37
8580
- deploy:
8681
requires:
8782
- temple_check
8883
- lint
89-
- test_py34
9084
- test_py35
9185
- test_py36
9286
- test_py37

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Setup
4848
To set up your development environment, you'll need to install a few things.
4949
For Python version management, we use `pyenv-virtualenv <https://github.com/pyenv/pyenv-virtualenv>`_.
5050
Follow the installation instructions there, and then in the *root directory* of
51-
this repo run: ``make setup``
51+
this repo run: ``make setup`` Please note, temporal-sqlalchemy only supports python versions >= 3.5.
5252

5353
Running the Tests
5454
~~~~~~~~~~~~~~~~~

requirements.txt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,2 @@
1-
singledispatch>=3.4.0.0;python_version<"3.4"
21
sqlalchemy>=1.1.9
32
psycopg2>=2.7.5
4-
typing>=3.5.2,<4.0.0;python_version<"3.5"

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author-email = [email protected]
55
summary = Temporal Extensions for SQLAlchemy ORM
66
description-file = README.rst
77
home-page = https://github.com/CloverHealth/temporal-sqlalchemy
8-
python-requires = >=3.4
8+
python-requires = >=3.5
99
license = BSD 3-Clause
1010
classifier =
1111
Topic :: Internet :: WWW/HTTP :: Dynamic Content

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import sys
33

44
# Check the Python version manually because pip < 9.0 doesn't check it for us.
5-
if sys.version_info < (3, 4):
5+
if sys.version_info < (3, 5):
66
raise RuntimeError('Unsupported version of Python: ' + sys.version)
77

88
setup(

test_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Requirements needed for running the test suite.
33
astroid==2.0.4
44
coverage==4.5.1
5-
flake8-bugbear==18.8.0;python_version>"3.4"
5+
flake8-bugbear==18.8.0
66
flake8-commas==2.0.0
77
flake8-comprehensions==1.4.1
88
flake8-import-order==0.18

0 commit comments

Comments
 (0)