Skip to content

Commit adf8f56

Browse files
committed
Update url from dahlia/libsass-python => sass/libsass-python
1 parent 97c30fc commit adf8f56

6 files changed

+25
-25
lines changed

CONTRIBUTING.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Tests
2727
AppVeyor_ (Windows).
2828

2929
.. _tox: http://tox.testrun.org/
30-
.. _Travis: http://travis-ci.org/dahlia/libsass-python
31-
.. _AppVeyor: https://ci.appveyor.com/project/dahlia/libsass-python
30+
.. _Travis: http://travis-ci.org/sass/libsass-python
31+
.. _AppVeyor: https://ci.appveyor.com/project/asottile/libsass-python-53smo
3232

3333

3434
Maintainer's guide
@@ -62,7 +62,7 @@ Here's a brief check list for releasing a new version:
6262
It's currently a static website deployed on GitHub Pages.
6363
Use ``python setup.py upload_doc`` command.
6464
Although it seems possible to be automated using Travis.
65-
- Manually create a release through https://github.com/dahlia/libsass-python/releases/
65+
- Manually create a release through https://github.com/sass/libsass-python/releases/
6666

6767
Ping Hong Minhee ([email protected], @dahlia on GitHub) if you need
6868
any help!

README.rst

+6-6
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ libsass-python: Sass_/SCSS for Python
55
:alt: PyPI
66
:target: https://pypi.python.org/pypi/libsass
77

8-
.. image:: https://travis-ci.org/dahlia/libsass-python.svg
9-
:target: https://travis-ci.org/dahlia/libsass-python
8+
.. image:: https://travis-ci.org/sass/libsass-python.svg
9+
:target: https://travis-ci.org/sass/libsass-python
1010
:alt: Build Status
1111

12-
.. image:: https://ci.appveyor.com/api/projects/status/yghrs9jw7b67c0ia/branch/master?svg=true
13-
:target: https://ci.appveyor.com/project/dahlia/libsass-python
12+
.. image:: https://ci.appveyor.com/api/projects/status/asgquaxlffnuryoq?svg=true
13+
:target: https://ci.appveyor.com/project/asottile/libsass-python
1414
:alt: Build Status (Windows)
1515

16-
.. image:: https://coveralls.io/repos/github/dahlia/libsass-python/badge.svg?branch=master
17-
:target: https://coveralls.io/github/dahlia/libsass-python?branch=master
16+
.. image:: https://coveralls.io/repos/github/sass/libsass-python/badge.svg?branch=master
17+
:target: https://coveralls.io/github/sass/libsass-python?branch=master
1818
:alt: Coverage Status
1919

2020
This package provides a simple Python extension module ``sass`` which is

docs/conf.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -257,9 +257,9 @@
257257

258258

259259
extlinks = {
260-
'issue': ('https://github.com/dahlia/libsass-python/issues/%s', '#'),
261-
'branch': ('https://github.com/dahlia/libsass-python/compare/master...%s',
260+
'issue': ('https://github.com/sass/libsass-python/issues/%s', '#'),
261+
'branch': ('https://github.com/sass/libsass-python/compare/master...%s',
262262
''),
263-
'commit': ('https://github.com/dahlia/libsass-python/commit/%s', ''),
263+
'commit': ('https://github.com/sass/libsass-python/commit/%s', ''),
264264
'upcommit': ('https://github.com/sass/libsass/commit/%s', ''),
265265
}

docs/index.rst

+10-10
Original file line numberDiff line numberDiff line change
@@ -130,27 +130,27 @@ Open source
130130
-----------
131131

132132
GitHub (Git repository + issues)
133-
https://github.com/dahlia/libsass-python
133+
https://github.com/sass/libsass-python
134134

135135
Travis CI
136-
https://travis-ci.org/dahlia/libsass-python
136+
https://travis-ci.org/sass/libsass-python
137137

138-
.. image:: https://travis-ci.org/dahlia/libsass-python.svg
139-
:target: https://travis-ci.org/dahlia/libsass-python
138+
.. image:: https://travis-ci.org/sass/libsass-python.svg
139+
:target: https://travis-ci.org/sass/libsass-python
140140
:alt: Build Status
141141

142142
AppVeyor (CI for Windows)
143-
https://ci.appveyor.com/project/dahlia/libsass-python
143+
https://ci.appveyor.com/project/asottile/libsass-python
144144

145-
.. image:: https://ci.appveyor.com/api/projects/status/yghrs9jw7b67c0ia/branch/master?svg=true
146-
:target: https://ci.appveyor.com/project/dahlia/libsass-python
145+
.. image:: https://ci.appveyor.com/api/projects/status/asgquaxlffnuryoq?svg=true
146+
:target: https://ci.appveyor.com/project/asottile/libsass-python
147147
:alt: Build Status (Windows)
148148

149149
Coveralls (Test coverage)
150-
https://coveralls.io/r/dahlia/libsass-python
150+
https://coveralls.io/r/sass/libsass-python
151151

152-
.. image:: https://img.shields.io/coveralls/dahlia/libsass-python/master.svg
153-
:target: https://coveralls.io/r/dahlia/libsass-python
152+
.. image:: https://coveralls.io/repos/github/sass/libsass-python/badge.svg?branch=master
153+
:target: https://coveralls.io/r/sass/libsass-python
154154
:alt: Coverage Status
155155

156156
PyPI

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def run(self):
227227
'build', 'sphinx', 'html')
228228
os.chdir(path)
229229
os.system('git clone -b gh-pages --depth 5 '
230-
'[email protected]:dahlia/libsass-python.git .')
230+
'[email protected]:sass/libsass-python.git .')
231231
os.system('git rm -r .')
232232
os.system('touch .nojekyll')
233233
os.system('cp -r ' + build + '/* .')
@@ -257,7 +257,7 @@ def run(self):
257257
author='Hong Minhee',
258258
author_email='minhee' '@' 'dahlia.kr',
259259
url='http://hongminhee.org/libsass-python/',
260-
download_url='https://github.com/dahlia/libsass-python/releases',
260+
download_url='https://github.com/sass/libsass-python/releases',
261261
entry_points={
262262
'distutils.commands': [
263263
'build_sass = sassutils.distutils:build_sass'

upload_appveyor_builds.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
APPVEYOR_API_BASE_URL = 'https://ci.appveyor.com/api/'
1919
APPVEYOR_API_PROJECT_URL = urljoin(APPVEYOR_API_BASE_URL,
20-
'projects/dahlia/libsass-python/')
20+
'projects/asottile/libsass-python/')
2121
APPVEYOR_API_BUILDS_URL = urljoin(APPVEYOR_API_PROJECT_URL,
2222
'history?recordsNumber=50&branch=master')
2323
APPVEYOR_API_JOBS_URL = urljoin(APPVEYOR_API_PROJECT_URL,

0 commit comments

Comments
 (0)