Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Tanner Prestegard
gracedb-client
Commits
e1b9ae94
Commit
e1b9ae94
authored
Feb 11, 2016
by
Branson Stephens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Packaging changes for v 1.20.
parent
40b2569c
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
7 deletions
+13
-7
debian/changelog
debian/changelog
+6
-0
ligo-gracedb.spec
ligo-gracedb.spec
+3
-3
ligo/gracedb/__init__.py
ligo/gracedb/__init__.py
+1
-1
ligo/gracedb/cli.py
ligo/gracedb/cli.py
+1
-1
ligo/gracedb/test/test.py
ligo/gracedb/test/test.py
+1
-1
setup.py
setup.py
+1
-1
No files found.
debian/changelog
View file @
e1b9ae94
ligo-gracedb (1.20-1) unstable; urgency=low
* Improved error handling for expired or missing credentials
* Improved error handling when server returns non-JSON response
* Added --use-basic-auth option to command-line client
-- Branson Stephens <branson.stephens@ligo.org> Thu, 11 Feb 2016 15:00:00 -0600
ligo-gracedb (1.19.1-1) unstable; urgency=low
* Force TLSv1 for Python versions less than 2.7.9
* Changed adjustResponse to put retry-after in the JSON response for 429s
...
...
ligo-gracedb.spec
View file @
e1b9ae94
%define name ligo-gracedb
%define version 1.
19.1
%define unmangled_version 1.
19.1
%define release
2
%define version 1.
20
%define unmangled_version 1.
20
%define release
1
Summary: Gravity Wave Candidate Event Database
Name: %{name}
...
...
ligo/gracedb/__init__.py
View file @
e1b9ae94
...
...
@@ -18,7 +18,7 @@
__all__
=
[
"cli"
,
"rest"
]
GIT_TAG
=
'gracedb-1.
19.1
-1'
GIT_TAG
=
'gracedb-1.
20
-1'
# issue 717. Required for backward compatibility -- make sure "from ligo import gracedb"
# works as it used to.
...
...
ligo/gracedb/cli.py
View file @
e1b9ae94
...
...
@@ -25,7 +25,7 @@ DEFAULT_SERVICE_URL = "https://gracedb.ligo.org/gracedb/api"
DEFAULT_BASIC_URL
=
"https://gracedb.ligo.org/apibasic/"
GIT_TAG
=
'gracedb-1.
19.1
-1'
GIT_TAG
=
'gracedb-1.
20
-1'
DEFAULT_COLUMNS
=
"graceid,labels,group,pipeline,search,far,gpstime,created,dataurl"
...
...
ligo/gracedb/test/test.py
View file @
e1b9ae94
...
...
@@ -316,7 +316,7 @@ class TestGracedb(unittest.TestCase):
def
test_gittag
(
self
):
# try to make sure GIT_TAG is set properly.
import
errno
version
=
"1.
19.1
"
version
=
"1.
20
"
try
:
# If we are in the source dir (setup.py is available)
# make sure the version above agrees.
...
...
setup.py
View file @
e1b9ae94
...
...
@@ -20,7 +20,7 @@ import os
from
setuptools
import
setup
version
=
"1.
19.1
"
version
=
"1.
20
"
setup
(
name
=
"ligo-gracedb"
,
...
...
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