Skip to content

Commit 3580b81

Browse files
committed
fix: update authors and changelog
1 parent cfb732d commit 3580b81

File tree

11 files changed

+326
-568
lines changed

11 files changed

+326
-568
lines changed

.codecov.yml

Lines changed: 11 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,14 @@
1-
# codecov can find this file anywhere in the repo, so we don't need to clutter
2-
# the root folder.
3-
#comment: false
4-
5-
codecov:
6-
notify:
7-
require_ci_to_pass: no
8-
91
coverage:
102
status:
11-
patch:
3+
project: # more options at https://docs.codecov.com/docs/commit-status
124
default:
13-
target: "80"
14-
if_no_uploads: error
15-
if_not_found: success
16-
if_ci_failed: failure
17-
project:
18-
default: false
19-
library:
20-
target: auto
21-
if_no_uploads: error
22-
if_not_found: success
23-
if_ci_failed: failure
24-
paths: "!*/tests/.*"
25-
26-
tests:
27-
target: 97.9%
28-
paths: "*/tests/.*"
29-
30-
flags:
31-
tests:
32-
paths:
33-
- tests/
5+
target: auto # use the coverage from the base commit, fail if coverage is lower
6+
threshold: 0% # allow the coverage to drop by
7+
8+
comment:
9+
layout: " diff, flags, files"
10+
behavior: default
11+
require_changes: false
12+
require_base: false # [true :: must have a base report to post]
13+
require_head: false # [true :: must have a head report to post]
14+
hide_project_coverage: false # [true :: only show coverage on the git diff aka patch coverage]

AUTHORS.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Authors
22
=======
33

4-
Christopher Farrow, Pavol Juhas, and members of the Billinge Group
4+
Christopher Farrow, Pavol Juhas, Simon J. L. Billinge, and members of the Billinge Group
55

66
Contributors
77
------------

AUTHORS.txt

Lines changed: 0 additions & 9 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 0 additions & 33 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,34 @@ Release notes
33
=============
44

55
.. current developments
6+
7+
Version 3.0.0 – 2019-03-14
8+
==========================
9+
10+
**Added:**
11+
12+
* Support for Python 3.7, 3.6, 3.5 in addition to 2.7.
13+
14+
**Changed:**
15+
16+
* Always use lower-case imports from `diffpy.structure`.
17+
* Use numeric-value sort to order variables in `PrintFitHook`.
18+
19+
**Deprecated:**
20+
21+
* Variable `__gitsha__` in the `version` module renamed to `__git_commit__`.
22+
23+
**Removed:**
24+
25+
* Optional upper and lower-bound arguments in `Parameter.setValue`.
26+
The bounds can be set with `Parameter.boundRange` instead.
27+
* Unused classes `ListOperator`, `SetOperator`.
28+
29+
**Fixed:**
30+
31+
* Metadata retrieval from `PDFContribution` hierarchy.
32+
* Refresh `PDFGenerator` when its `rgrid` is changed in-place.
33+
* Zero division in the `nppdfsas.py` example.
34+
* Crash in `ellipsoidsas.py` example because of bug in `Parameter.setValue`.
35+
* Pickling of `ProfileGenerator` objects and of bound class methods.
36+
* Invalid escape sequences in string values.

LICENSE.txt

Lines changed: 0 additions & 137 deletions
This file was deleted.

LICENSE_DANSE.txt

Lines changed: 0 additions & 34 deletions
This file was deleted.

MANIFEST.in

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
1-
recursive-include src *
2-
include AUTHORS.txt LICENSE*.txt README.rst
3-
recursive-exclude src *.pyc
4-
global-exclude .gitattributes .gitignore .gitarchive.cfg
5-
global-exclude .DS_Store
1+
graft src
2+
graft tests
3+
graft requirements
64

7-
# Avoid user content in setup.cfg to make distribution reproducible.
8-
exclude setup.cfg
5+
include AUTHORS.rst LICENSE*.rst README.rst
96

10-
# Exclude git-tracked files spuriously added by setuptools_scm
11-
exclude .codecov.yml
12-
exclude .coveragerc
13-
exclude .travis*
14-
prune conda-recipe
15-
prune devutils
16-
prune doc
7+
# Exclude all bytecode files and __pycache__ directories
8+
global-exclude *.py[cod] # Exclude all .pyc, .pyo, and .pyd files.
9+
global-exclude .DS_Store # Exclude Mac filesystem artifacts.
10+
global-exclude __pycache__ # Exclude Python cache directories.
11+
global-exclude .git* # Exclude git files and directories.
12+
global-exclude .idea # Exclude PyCharm project settings.

0 commit comments

Comments
 (0)