Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
Drop support for Python 3 (#6)
Browse files Browse the repository at this point in the history
Tests actually were not running in Python 3. Fixing that revealed a dependency on baiji, which does not run in Python 3. This probably is not an easy dependency to remove, so drop Python 3 support for now.
  • Loading branch information
paulmelnikow authored Sep 9, 2018
1 parent 0df727d commit 397b2e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
python3:
docker:
- image: circleci/python:2
- image: circleci/python:3

working_directory: ~/repo

Expand Down Expand Up @@ -110,7 +110,7 @@ workflows:
on-commit:
jobs:
- python2
- python3
# - python3

daily:
triggers:
Expand All @@ -121,4 +121,4 @@ workflows:
only: master
jobs:
- python2
- python3
# - python3
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
# Requires baiji, which does not support python 3.
# 'Programming Language :: Python :: 3',
]
)

0 comments on commit 397b2e4

Please sign in to comment.