Skip to content

Commit e2b07af

Browse files
author
scls19fr
authored
Move to GH org (#178)
* Update setup.py * Update conf.py * Update README.rst * Update development.rst * Update release-procedure.md * Update CHANGELOG.rst
1 parent 97230ef commit e2b07af

6 files changed

Lines changed: 23 additions & 21 deletions

File tree

CHANGELOG.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ Version 2.9.1 (WIP)
1414
Features
1515
--------
1616

17+
* :gh:`177` (:pr:`178`): Fixed repository and CI links (moved https://github.com/k-bx/python-semver/ repository to https://github.com/python-semver/python-semver/)
18+
1719
Bug Fixes
1820
---------
1921

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ There are other functions to discover. Read on!
9797
.. |latest-version| image:: https://img.shields.io/pypi/v/semver.svg
9898
:alt: Latest version on PyPI
9999
:target: https://pypi.org/project/semver
100-
.. |build-status| image:: https://travis-ci.org/k-bx/python-semver.svg?branch=master
100+
.. |build-status| image:: https://travis-ci.com/python-semver/python-semver.svg?branch=master
101101
:alt: Build status
102-
:target: https://travis-ci.org/k-bx/python-semver
102+
:target: https://travis-ci.com/python-semver/python-semver
103103
.. |python-support| image:: https://img.shields.io/pypi/pyversions/semver.svg
104104
:target: https://pypi.org/project/semver
105105
:alt: Python versions
@@ -108,7 +108,7 @@ There are other functions to discover. Read on!
108108
:target: https://pypi.org/project/semver
109109
.. |license| image:: https://img.shields.io/pypi/l/semver.svg
110110
:alt: Software license
111-
:target: https://github.com/k-bx/python-semver/blob/master/LICENSE.txt
111+
:target: https://github.com/python-semver/python-semver/blob/master/LICENSE.txt
112112
.. |docs| image:: https://readthedocs.org/projects/python-semver/badge/?version=latest
113113
:target: http://python-semver.readthedocs.io/en/latest/?badge=latest
114114
:alt: Documentation Status

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@
8484

8585
# Markup to shorten external links
8686
# See https://www.sphinx-doc.org/en/master/usage/extensions/extlinks.html
87-
extlinks = {'gh': ('https://github.com/k-bx/python-semver/issues/%s',
87+
extlinks = {'gh': ('https://github.com/python-semver/python-semver/issues/%s',
8888
'#'),
89-
'pr': ('https://github.com/k-bx/python-semver/pull/%s',
89+
'pr': ('https://github.com/python-semver/python-semver/pull/%s',
9090
'PR #'),
9191
}
9292

docs/development.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributing to semver
33

44
The semver source code is managed using Git and is hosted on GitHub::
55

6-
git clone git://github.com/k-bx/python-semver
6+
git clone git://github.com/python-semver/python-semver
77

88

99
Reporting Bugs and Feedback
@@ -41,7 +41,7 @@ Modifying the Code
4141
We recommend the following workflow:
4242

4343
#. Fork our project on GitHub using this link:
44-
https://github.com/k-bx/python-semver/fork
44+
https://github.com/python-semver/python-semver/fork
4545

4646
#. Clone your forked Git repository (replace ``GITHUB_USER`` with your
4747
account name on GitHub)::
@@ -185,8 +185,8 @@ documentation includes:
185185

186186

187187
.. _flake8: https://flake8.readthedocs.io
188-
.. _issues: https://github.com/k-bx/python-semver/issues
189-
.. _pull request: https://github.com/k-bx/python-semver/pulls
188+
.. _issues: https://github.com/python-semver/python-semver/issues
189+
.. _pull request: https://github.com/python-semver/python-semver/pulls
190190
.. _pytest: http://pytest.org/
191191
.. _Semantic Versioning: https://semver.org
192192
.. _Sphinx style: https://sphinx-rtd-tutorial.readthedocs.io/en/latest/docstrings.html

release-procedure.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,24 @@
22
Release procedure
33
#################
44

5-
* Verify that issues about new release are closed https://github.com/k-bx/python-semver/issues and verify that no pull requests that should be included in this release haven't been left out https://github.com/k-bx/python-semver/pulls
5+
* Verify that issues about new release are closed https://github.com/python-semver/python-semver/issues and verify that no pull requests that should be included in this release haven't been left out https://github.com/python-semver/python-semver/pulls
66

7-
* Verify that continuous integration for latest build was passing https://travis-ci.org/k-bx/python-semver
7+
* Verify that continuous integration for latest build was passing https://travis-ci.com/python-semver/python-semver
88

9-
* Verify that `__version__` in [semver.py](https://github.com/k-bx/python-semver/blob/master/semver.py) have been updated and follow https://semver.org/
9+
* Verify that `__version__` in [semver.py](https://github.com/python-semver/python-semver/blob/master/semver.py) have been updated and follow https://semver.org/
1010

11-
* Verify that [CHANGELOG](https://github.com/k-bx/python-semver/blob/master/CHANGELOG.rst) have been updated. No WIP should be present in CHANGELOG during release!
11+
* Verify that [CHANGELOG](https://github.com/python-semver/python-semver/blob/master/CHANGELOG.rst) have been updated. No WIP should be present in CHANGELOG during release!
1212

1313
* If one or several supported Python versions have been removed or added, verify that the 3 following files have been updated:
14-
* [setup.py](https://github.com/k-bx/python-semver/blob/master/setup.py)
15-
* [tox.ini](https://github.com/k-bx/python-semver/blob/master/tox.ini)
16-
* [.travis.yml](https://github.com/k-bx/python-semver/blob/master/.travis.yml)
14+
* [setup.py](https://github.com/python-semver/python-semver/blob/master/setup.py)
15+
* [tox.ini](https://github.com/python-semver/python-semver/blob/master/tox.ini)
16+
* [.travis.yml](https://github.com/python-semver/python-semver/blob/master/.travis.yml)
1717

1818
* Verify that doc reflecting new changes have been updated and are available at https://python-semver.readthedocs.io/en/latest/ If necessary, trigger doc build at https://readthedocs.org/projects/python-semver/
1919

20-
* Add eventually new contributor(s) to [CONTRIBUTORS](https://github.com/k-bx/python-semver/blob/master/CONTRIBUTORS)
20+
* Add eventually new contributor(s) to [CONTRIBUTORS](https://github.com/python-semver/python-semver/blob/master/CONTRIBUTORS)
2121

22-
* Ensure that long description (ie [README.rst](https://github.com/k-bx/python-semver/blob/master/README.rst)) can be correctly rendered by Pypi using `restview --long-description`
22+
* Ensure that long description (ie [README.rst](https://github.com/python-semver/python-semver/blob/master/README.rst)) can be correctly rendered by Pypi using `restview --long-description`
2323

2424
* Upload to PyPI
2525

@@ -38,4 +38,4 @@ git tag -a x.x.x -m 'Version x.x.x'
3838
git push python-semver master --tags
3939
```
4040

41-
or using GitHub web interface available at https://github.com/k-bx/python-semver/releases
41+
or using GitHub web interface available at https://github.com/python-semver/python-semver/releases

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ def read_file(filename):
8282
long_description=read_file('README.rst'),
8383
author=package.__author__,
8484
author_email=package.__author_email__,
85-
url='https://github.com/k-bx/python-semver',
86-
download_url='https://github.com/k-bx/python-semver/downloads',
85+
url='https://github.com/python-semver/python-semver',
86+
download_url='https://github.com/python-semver/python-semver/downloads',
8787
py_modules=[package.__name__],
8888
include_package_data=True,
8989
license='BSD',

0 commit comments

Comments
 (0)