Skip to content

Commit

Permalink
Remove support for API v2.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
martey committed Oct 29, 2016
1 parent 0904e4b commit 2b05dbb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Version 3.0.0 (unreleased)
========================
- Remove support for Python 2.6.
- Add support for Graph API version 2.8.
- Remove support for Graph API version 2.1.
- Change default Graph API version to 2.2.

Version 2.0.0 (2016-08-08)
==============================
Expand Down
2 changes: 1 addition & 1 deletion facebook/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

FACEBOOK_GRAPH_URL = "https://graph.facebook.com/"
FACEBOOK_OAUTH_DIALOG_URL = "https://www.facebook.com/dialog/oauth?"
VALID_API_VERSIONS = ["2.1", "2.2", "2.3", "2.4", "2.5", "2.6", "2.7", "2.8"]
VALID_API_VERSIONS = ["2.2", "2.3", "2.4", "2.5", "2.6", "2.7", "2.8"]


class GraphAPI(object):
Expand Down

0 comments on commit 2b05dbb

Please sign in to comment.