Skip to content

Commit 3c4a6e7

Browse files
committed
Update github organisation name and update version to 0.1.5
1 parent 8f6c2e5 commit 3c4a6e7

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</a>
88

99
<p>
10-
<a href="https://github.com/when-of-python/codesurvey">GitHub</a> - <a href="https://when-of-python.github.io/codesurvey">Documentation</a>
10+
<a href="https://github.com/lean-python-org/codesurvey">GitHub</a> - <a href="https://lean-python-org.github.io/codesurvey">Documentation</a>
1111
</p>
1212

1313
</div>
@@ -77,18 +77,18 @@ repo_count_with_math = sum([
7777
print(f'{repo_count_with_math} out of {len(repo_features)} repos use math')
7878
```
7979

80-
![Animated GIF of CodeSurvey demo on the command-line](https://when-of-python.github.io/codesurvey/images/codesurvey-demo.gif)
80+
![Animated GIF of CodeSurvey demo on the command-line](https://lean-python-org.github.io/codesurvey/images/codesurvey-demo.gif)
8181

8282
* For more Sources of repositories, see [Source
83-
docs](https://when-of-python.github.io/codesurvey/sources/core)
83+
docs](https://lean-python-org.github.io/codesurvey/sources/core)
8484
* For more Analyzers and FeatureFinders, see [Analyzer
85-
docs](https://when-of-python.github.io/codesurvey/analyzers/core)
85+
docs](https://lean-python-org.github.io/codesurvey/analyzers/core)
8686
* For more options and methods for inspecting results, see
87-
[`CodeSurvey` docs](https://when-of-python.github.io/codesurvey/core)
87+
[`CodeSurvey` docs](https://lean-python-org.github.io/codesurvey/core)
8888
* For details on directly inspecting the sqlite database of survey
89-
results see [Database docs](https://when-of-python.github.io/codesurvey/database)
89+
results see [Database docs](https://lean-python-org.github.io/codesurvey/database)
9090
* More examples can be found in
91-
[examples](https://github.com/when-of-python/codesurvey/tree/main/examples)
91+
[examples](https://github.com/lean-python-org/codesurvey/tree/main/examples)
9292

9393

9494
## Contributing

codesurvey/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
2121
"""
2222

23-
__version__ = '0.1.4'
23+
__version__ = '0.1.5'
2424

2525
from .core import CodeSurvey
2626
from .database import RepoFeature, CodeFeature

examples/basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
'.',
1616
]),
1717
GitSource([
18-
'https://github.com/when-of-python/blog.git',
18+
'https://github.com/lean-python-org/blog.git',
1919
]),
2020
GithubSampleSource(language='python'),
2121
],

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
site_name: CodeSurvey
2-
repo_url: https://github.com/when-of-python/codesurvey/
2+
repo_url: https://github.com/lean-python-org/codesurvey/
33
site_description: Documentation for CodeSurvey
44
nav:
55
- README: 'README.md'

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tool.poetry]
22
name = "codesurvey"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "Analyse source code repositories for language feature and library usage."
55
license = "GPL-3.0-only"
66
authors = ["Ben Denham <[email protected]>", "Grant Paton-Simpson <[email protected]>"]
77
readme = "README.md"
8-
repository = "https://github.com/when-of-python/codesurvey"
8+
repository = "https://github.com/lean-python-org/codesurvey"
99
classifiers = [
1010
"Development Status :: 2 - Pre-Alpha",
1111
"Intended Audience :: Developers",

tests/test_codesurvey.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33

44
def test_version():
5-
assert __version__ == '0.1.4'
5+
assert __version__ == '0.1.5'

0 commit comments

Comments
 (0)