File tree Expand file tree Collapse file tree 6 files changed +4
-12
lines changed Expand file tree Collapse file tree 6 files changed +4
-12
lines changed Original file line number Diff line number Diff line change 43
43
- run :
44
44
<< : *dependencies
45
45
- run : make validate
46
- test_py34 :
47
- docker :
48
- - image : circleci/python:3.4-stretch
49
- << : *test_boilerplate
50
46
test_py35 :
51
47
docker :
52
48
- image : circleci/python:3.5-stretch
@@ -78,15 +74,13 @@ workflows:
78
74
jobs :
79
75
- temple_check
80
76
- lint
81
- - test_py34
82
77
- test_py35
83
78
- test_py36
84
79
- test_py37
85
80
- deploy :
86
81
requires :
87
82
- temple_check
88
83
- lint
89
- - test_py34
90
84
- test_py35
91
85
- test_py36
92
86
- test_py37
Original file line number Diff line number Diff line change 48
48
To set up your development environment, you'll need to install a few things.
49
49
For Python version management, we use `pyenv-virtualenv <https://github.com/pyenv/pyenv-virtualenv >`_.
50
50
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.
52
52
53
53
Running the Tests
54
54
~~~~~~~~~~~~~~~~~
Original file line number Diff line number Diff line change 1
- singledispatch >= 3.4.0.0 ;python_version < "3.4"
2
1
sqlalchemy >= 1.1.9
3
2
psycopg2 >= 2.7.5
4
- typing >= 3.5.2 ,< 4.0.0 ;python_version < "3.5"
Original file line number Diff line number Diff line change 5
5
summary = Temporal Extensions for SQLAlchemy ORM
6
6
description-file = README.rst
7
7
home-page = https://github.com/CloverHealth/temporal-sqlalchemy
8
- python-requires = >=3.4
8
+ python-requires = >=3.5
9
9
license = BSD 3-Clause
10
10
classifier =
11
11
Topic :: Internet :: WWW/HTTP :: Dynamic Content
Original file line number Diff line number Diff line change 2
2
import sys
3
3
4
4
# 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 ):
6
6
raise RuntimeError ('Unsupported version of Python: ' + sys .version )
7
7
8
8
setup (
Original file line number Diff line number Diff line change 2
2
# Requirements needed for running the test suite.
3
3
astroid==2.0.4
4
4
coverage==4.5.1
5
- flake8-bugbear==18.8.0;python_version>"3.4"
5
+ flake8-bugbear==18.8.0
6
6
flake8-commas==2.0.0
7
7
flake8-comprehensions==1.4.1
8
8
flake8-import-order==0.18
You can’t perform that action at this time.
0 commit comments