From 692f73b51060c85c12d958681556bbb34d9b5fc2 Mon Sep 17 00:00:00 2001 From: ikaroskun Date: Mon, 26 Sep 2022 14:10:56 +0800 Subject: [PATCH 1/2] feat(graph): :sparkles: New version for v15.0 --- pyfacebook/api/graph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfacebook/api/graph.py b/pyfacebook/api/graph.py index ab07b0d..7002cdd 100644 --- a/pyfacebook/api/graph.py +++ b/pyfacebook/api/graph.py @@ -21,7 +21,6 @@ class GraphAPI: VALID_API_VERSIONS = [ - "v7.0", "v8.0", "v9.0", "v10.0", @@ -29,6 +28,7 @@ class GraphAPI: "v12.0", "v13.0", "v14.0", + "v15.0", ] GRAPH_URL = "https://graph.facebook.com/" AUTHORIZATION_URL = "https://www.facebook.com/dialog/oauth" From 653203a7b2b264922330e2baf5d76ee3f501864b Mon Sep 17 00:00:00 2001 From: ikaroskun Date: Mon, 26 Sep 2022 16:57:38 +0800 Subject: [PATCH 2/2] fix(dependencies): :pushpin: make dependencies work well in python3.6 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 2a7d902..ea89b17 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -38,6 +38,7 @@ pytest = "^6.2.5" pytest-cov = "^3.0.0" responses = ">=0.11" tox = "^3.20.1" +tomli = "1.2.3" [build-system] requires = ["poetry>=0.12"]