File tree Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Expand file tree Collapse file tree 3 files changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,10 @@ jobs:
34
34
run : python -m pip install . --no-deps
35
35
36
36
- name : build documents
37
- run : make -C doc/manual html
37
+ run : make -C doc html
38
38
39
39
- name : Deploy
40
40
uses : peaceiris/actions-gh-pages@v3
41
41
with :
42
42
github_token : ${{ secrets.GITHUB_TOKEN }}
43
- publish_dir : ./doc/manual/ build/html
43
+ publish_dir : ./doc/build/html
Original file line number Diff line number Diff line change 14
14
steps :
15
15
- uses : actions/checkout@v3
16
16
- uses : actions/setup-python@v4
17
- - name : Make prevent_commit_to_main.sh executable
18
- run : chmod +x ./prevent_commit_to_main.sh
19
17
-
uses :
pre-commit/[email protected]
20
18
with :
21
19
extra_args : --all-files
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
2
##############################################################################
3
3
#
4
- # diffpy by DANSE Diffraction group
5
- # Simon J. L. Billinge
6
- # (c) 2010 The Trustees of Columbia University
7
- # in the City of New York. All rights reserved.
4
+ # (c) 2024 The Trustees of Columbia University in the City of New York.
5
+ # All rights reserved.
8
6
#
9
- # File coded by: Pavol Juhas
7
+ # File coded by: Billinge Group members and community contributors.
10
8
#
11
- # See AUTHORS.txt for a list of people who contributed.
12
- # See LICENSE_DANSE.txt for license information.
9
+ # See GitHub contributions for a more detailed list of contributors.
10
+ # https://github.com/diffpy/diffpy.labpdfproc/graphs/contributors
11
+ #
12
+ # See LICENSE.rst for license information.
13
13
#
14
14
##############################################################################
15
15
16
- """diffpy - tools for structure analysis by diffraction.
17
-
18
- Blank namespace package.
19
- """
16
+ """Blank namespace package for module diffpy."""
20
17
21
18
22
19
from pkgutil import extend_path
23
20
24
21
__path__ = extend_path (__path__ , __name__ )
25
22
26
23
# End of file
24
+
You can’t perform that action at this time.
0 commit comments