Skip to content

Commit

Permalink
hooks: update graphql_query hook for compatibility with v1.2.0
Browse files Browse the repository at this point in the history
Update `graphql_query` hook for compatibility with `graphql-query`
v1.2.0. Collect data files from `graphql_query` instead of
`graphql_query.templates`; the templates directory cannot be
treated as a namespace subpackage anymore due to introduction of
eponymous submodule.
  • Loading branch information
rokm committed Jul 31, 2023
1 parent 80411aa commit 7534fd7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions news/282.update.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Update ``graphql_query`` hook for compatibility with ``graphql-query``
v1.2.0.
2 changes: 1 addition & 1 deletion requirements-test-libraries.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ folium==0.14.0
ffpyplayer==4.5.0
geopandas==0.13.2; sys_platform != 'win32'
google-api-python-client==2.95.0
graphql-query==1.1.1
graphql-query==1.2.0
python-gitlab==3.15.0
h5py==3.9.0
humanize==4.7.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

from PyInstaller.utils.hooks import collect_data_files

datas = collect_data_files('graphql_query.templates')
datas = collect_data_files('graphql_query')

0 comments on commit 7534fd7

Please sign in to comment.