Skip to content

Commit 7aa477e

Browse files
authored
Merge pull request #34 from igr-ml/prepare-v0.1.0
Prepare v0.1.0
2 parents 285c68c + 6e9bb73 commit 7aa477e

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.0]
11+
1012
### Added
1113

1214
- Add `RealNVP`
@@ -15,3 +17,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1517
- Add option for user-defined masks in coupling-based flows
1618

1719
[Unreleased]: https://github.com/igr-ml/glasflow/compare/v0.1.0...HEAD
20+
[0.1.0]: https://github.com/igr-ml/glasflow/releases/tag/v0.1.0

LICENSE.md

+30-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,35 @@
1+
# glasflow
2+
3+
MIT License
4+
5+
Copyright (c) 2021-2022 Jordan McGinn, Federico Stachurski, Michael J. Williams
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.
24+
25+
# nflows
26+
27+
This software includes a fork of [nflows](https://github.com/igr-ml/nflows)
28+
which is licensed under an MIT License:
29+
130
MIT License
231

3-
Copyright (c) 2021 Jordan McGinn, Federico Stachurski, Michael J. Williams
32+
Copyright (c) 2020 Conor Durkan, Artur Bekasov, Iain Murray, George Papamakarios
433

534
Permission is hereby granted, free of charge, to any person obtaining a copy
635
of this software and associated documentation files (the "Software"), to deal

src/glasflow/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def _import_submodules(module):
4141
"1",
4242
]
4343
if USE_NFLOWS:
44-
print("glasflow is using `nflows` instead of the included submodule")
44+
print("glasflow is using an externally installed version of nflows")
4545
if not NFLOWS_INSTALLED:
4646
raise RuntimeError(
4747
"nflows is not installed. Set the environment variable "
@@ -55,7 +55,7 @@ def _import_submodules(module):
5555
# the nflows installation
5656
_import_submodules(nflows)
5757
else:
58-
print("glasflow is using the included fork of `nflows`")
58+
print("glasflow is using its own internal version of nflows")
5959

6060
from .flows import ( # noqa
6161
CouplingNSF,

0 commit comments

Comments
 (0)