Skip to content

Commit aa5b1b5

Browse files
aloctavodiaColCarroll
authored andcommitted
drop python 3.5 (#3700)
1 parent 84a7902 commit aa5b1b5

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ env:
3131
- FLOATX='float64' TESTCMD="--durations=10 --cov-append pymc3/tests/test_distributions_random.py pymc3/tests/test_shared.py pymc3/tests/test_smc.py pymc3/tests/test_sampling.py pymc3/tests/test_parallel_sampling.py pymc3/tests/test_dist_math.py pymc3/tests/test_distribution_defaults.py pymc3/tests/test_distributions_timeseries.py pymc3/tests/test_random.py"
3232
- FLOATX='float64' TESTCMD="--durations=10 --cov-append pymc3/tests/test_examples.py pymc3/tests/test_posteriors.py pymc3/tests/test_gp.py"
3333
- FLOATX='float64' TESTCMD="--durations=10 --cov-append pymc3/tests/test_variational_inference.py pymc3/tests/test_updates.py pymc3/tests/test_shape_handling.py"
34-
- PYTHON_VERSION=3.5 FLOATX='float64' ENVNAME="py35_testenv" TESTCMD="--cov-append pymc3/tests/test_sampling.py pymc3/tests/test_model_graph.py"
3534

3635
script:
3736
- . ./scripts/test.sh $TESTCMD

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
classifiers = ['Development Status :: 5 - Production/Stable',
1515
'Programming Language :: Python',
1616
'Programming Language :: Python :: 3',
17-
'Programming Language :: Python :: 3.5',
1817
'Programming Language :: Python :: 3.6',
1918
'Programming Language :: Python :: 3.7',
2019
'License :: OSI Approved :: Apache Software License',
@@ -59,7 +58,7 @@ def get_version():
5958
package_data={'docs': ['*']},
6059
include_package_data=True,
6160
classifiers=classifiers,
62-
python_requires=">=3.5.4",
61+
python_requires=">=3.6",
6362
install_requires=install_reqs,
6463
tests_require=test_reqs,
6564
test_suite='nose.collector')

0 commit comments

Comments
 (0)