Skip to content

Commit c597da6

Browse files
authored
Merge pull request #3056 from bsipocz/MAINT_gama_url
MAINT: fix gama url
2 parents 95c9216 + fcd910d commit c597da6

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGES.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,11 @@ alma
1515

1616
- Added support for frequency_resolution in KHz [#3035]
1717

18+
gama
19+
^^^^
20+
21+
- Change URL to https and thus making the module functional again. [#3056]
22+
1823
mpc
1924
^^^
2025

astroquery/gama/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class GAMAClass(BaseQuery):
1515
TODO: document
1616
"""
1717

18-
request_url = 'http://www.gama-survey.org/dr3/query/'
18+
request_url = 'https://www.gama-survey.org/dr3/query/'
1919
timeout = 60
2020

2121
def query_sql_async(self, *args, **kwargs):

astroquery/gama/tests/test_gama_remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from ... import gama
55

66
SQL_QUERY = "SELECT * FROM SpecAll LIMIT 5"
7-
GAMA_URL = "http://www.gama-survey.org/"
7+
GAMA_URL = "https://www.gama-survey.org/"
88

99

1010
@pytest.mark.remote_data

0 commit comments

Comments
 (0)