Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
G
gracedb-client
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Iterations
Merge Requests
3
Merge Requests
3
Requirements
Requirements
List
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Test Cases
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issue
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lscsoft
gracedb-client
Commits
f05bdaab
Commit
f05bdaab
authored
Nov 24, 2020
by
Alexander Pace
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2.7.3 fixes
parent
239c75ff
Pipeline
#175815
passed with stages
in 17 minutes and 1 second
Changes
7
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
16 additions
and
9 deletions
+16
-9
debian/changelog
debian/changelog
+5
-0
debian/control
debian/control
+2
-2
ligo-gracedb.spec
ligo-gracedb.spec
+3
-2
ligo/gracedb/client.py
ligo/gracedb/client.py
+1
-0
ligo/gracedb/rest.py
ligo/gracedb/rest.py
+3
-3
ligo/gracedb/version.py
ligo/gracedb/version.py
+1
-1
setup.py
setup.py
+1
-1
No files found.
debian/changelog
View file @
f05bdaab
ligo-gracedb (2.7.3-1) unstable; urgency=low
* json() method for file retrieval.
-- Alexander E. Pace <alexander.pace@ligo.org> Mon, 23 Nov 2020 20:54:49 +0000
ligo-gracedb (2.7.2-1) unstable; urgency=low
* Bugfix for certificate check failure with tuple'd credentials
...
...
debian/control
View file @
f05bdaab
...
...
@@ -5,7 +5,7 @@ Priority: optional
Build-Depends: debhelper (>= 9), dh-python, python-all-dev, python3-all-dev, python-setuptools, python3-setuptools, python-six, python3-six, help2man
Standards-Version: 3.8.4
X-Python-Version: >=2.7
X-Python3-Version: >=3.
5
X-Python3-Version: >=3.
6
Package: python-ligo-gracedb
Architecture: all
...
...
@@ -21,7 +21,7 @@ Description: Gravitational-wave Candidate Event Database - Python
Package: python3-ligo-gracedb
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}, python3-ligo-common, python3-future, python3-setuptools, python3-cryptography, python3-requests
Depends: ${misc:Depends}, ${python3:Depends}, python3-ligo-common, python3-future, python3-setuptools, python3-cryptography, python3-requests
(>= 2.16.0)
Provides: ${python3:Provides}
Description: Gravitational-wave Candidate Event Database - Python 3
The gravitational-wave candidate event database (GraceDB) is a prototype
...
...
ligo-gracedb.spec
View file @
f05bdaab
%define name ligo-gracedb
%define version 2.7.
2
%define unmangled_version 2.7.
2
%define version 2.7.
3
%define unmangled_version 2.7.
3
%define release 1
Summary: Gravity Wave Candidate Event Database
...
...
@@ -62,6 +62,7 @@ Requires: python%{python3_pkgversion}-six
Requires: python%{python3_pkgversion}-ligo-common
Requires: python%{python3_pkgversion}-future
Requires: python%{python3_pkgversion}-cryptography
Requires: python%{python3_pkgversion}-requests >= 2.16.0
%{?python_provide:%python_provide python%{python3_pkgversion}-%{name}}
...
...
ligo/gracedb/client.py
View file @
f05bdaab
...
...
@@ -264,6 +264,7 @@ class GraceDBClient(Session):
resp
=
self
.
get
(
url
,
stream
=
True
,
**
kwargs
)
resp
.
raw
.
decode_content
=
True
resp
.
raw
.
status_code
=
resp
.
status_code
resp
.
raw
.
json
=
resp
.
json
return
resp
.
raw
# Return client credentials
...
...
ligo/gracedb/rest.py
View file @
f05bdaab
...
...
@@ -492,7 +492,7 @@ class GraceDb(GraceDBClient):
graceid (str): GraceDB ID of the event
Returns:
:class:`
httplib.HTTP
Response`
:class:`
requests.models.
Response`
Raises:
ligo.gracedb.exceptions.HTTPError: if the response has a status
...
...
@@ -819,7 +819,7 @@ class GraceDb(GraceDBClient):
superevent_id (str): GraceDB ID of the superevent.
Returns:
:class:`
httplib.HTTP
Response`
:class:`
requests.models.
Response`
Raises:
ligo.gracedb.exceptions.HTTPError: if the response has a status
...
...
@@ -1766,7 +1766,7 @@ class GraceDb(GraceDBClient):
action (str): ``'expose'`` or ``'hide'``.
Returns:
:class:`
httplib.HTTP
Response`
:class:`
requests.models.
Response`
Raises:
ligo.gracedb.exceptions.HTTPError: if the response has a status
...
...
ligo/gracedb/version.py
View file @
f05bdaab
__version__
=
'2.7.
2
'
__version__
=
'2.7.
3
'
setup.py
View file @
f05bdaab
...
...
@@ -104,7 +104,7 @@ setup(
install_requires
=
[
'future>=0.15.0'
,
'six>=1.9.0'
,
'cryptography>=1.7.2'
,
'requests>=2.6.0'
,
'requests>=2.
1
6.0'
,
],
setup_requires
=
SETUP_REQUIRES
,
tests_require
=
tests_require
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment