Skip to content

Commit

Permalink
BLD Remove Python 3.6 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
twiecki committed Jan 9, 2017
1 parent 36457cb commit 5b6bb33
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
Expand Down

4 comments on commit 5b6bb33

@usptact
Copy link
Contributor

@usptact usptact commented on 5b6bb33 Jan 9, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What's the issue with Python 3.6?

@ColCarroll
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just not landed on conda yet -- i'd guess it probably works fine, but we can't test it in CI yet

@twiecki
Copy link
Member Author

@twiecki twiecki commented on 5b6bb33 Jan 11, 2017 via email

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ColCarroll
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i don't use conda locally, so this may be wrong, but on travis, we download miniconda3, then call

    conda create -n testenv --yes pip python=${PYTHON_VERSION}
    source activate testenv

This apparently tries to install python-3.6.0, which doesn't exist, so it fails (https://travis-ci.org/ColCarroll/pymc3/jobs/189623258)

The issue on conda-forge was bumped 6 hours ago, so it seems like it will land imminently.

Please sign in to comment.