Skip to content

Commit fae8334

Browse files
author
Stefan Krawczyk
committed
Changes BSD references to apache 2.0
There's a lot left to clean up. But this at least changes references to BSD to apache 2.0 where appropriate.
1 parent b10120c commit fae8334

File tree

9 files changed

+22
-10
lines changed

9 files changed

+22
-10
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Guidance on how to contribute
22

3-
> All contributions to this project will be released under the [BSD 3-Clause Clear License](LICENSE). .
3+
> All contributions to this project will be released under the [Apache 2.0 License](LICENSE). .
44
> By submitting a pull request or filing a bug, issue, or
55
> feature request, you are agreeing to comply with this waiver of copyright interest.
6-
> You're also agreeing to abide by our [Code of Conduct](CODE_OF_CONDUCT.md).
6+
> You're also agreeing to abide by the ASF Code of Conduct.
77
88

99
There are two primary ways to help:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ See our page on [Why use Hamilton?](https://hamilton.dagworks.io/en/latest/get-s
208208

209209
# 📑 License
210210

211-
Hamilton is released under the BSD 3-Clause Clear License. See [LICENSE](https://github.com/DAGWorks-Inc/hamilton/blob/main/LICENSE.md) for details.
211+
Hamilton is released under the Apache 2.0 License. See [LICENSE](https://github.com/apache/hamilton/blob/main/LICENSE.md) for details.
212212

213213

214214
# 🌎 Community

contrib/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def load_requirements():
5454
"Development Status :: 5 - Production/Stable",
5555
"Intended Audience :: Developers",
5656
"Natural Language :: English",
57-
"License :: OSI Approved :: BSD License",
57+
"License :: OSI Approved :: Apache Software License",
5858
"Programming Language :: Python :: 3",
5959
"Programming Language :: Python :: 3.8",
6060
"Programming Language :: Python :: 3.9",

dev_tools/language_server/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ keywords = [
2121
classifiers = [
2222
"Topic :: Text Editors :: Integrated Development Environments (IDE)",
2323
"Intended Audience :: Developers",
24-
"License :: OSI Approved :: BSD License",
24+
"License :: OSI Approved :: Apache Software License",
2525
"Programming Language :: Python",
2626
"Programming Language :: Python :: 3",
2727
"Programming Language :: Python :: 3 :: Only",

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ dynamic = ["version"]
88
description = "Hamilton, the micro-framework for creating dataframes."
99
readme = "README.md"
1010
requires-python = ">=3.8, <4"
11-
license = {text = "BSD-3-Clause"}
11+
license = {text = "Apache-2.0"}
1212
keywords = ["hamilton"]
1313
authors = [
1414
{ name = "Stefan Krawczyk", email = "[email protected]" },
@@ -18,7 +18,7 @@ classifiers = [
1818
"Development Status :: 5 - Production/Stable",
1919
"Intended Audience :: Developers",
2020
"Natural Language :: English",
21-
"License :: OSI Approved :: BSD License",
21+
"License :: OSI Approved :: Apache Software License",
2222
"Programming Language :: Python :: 3",
2323
"Programming Language :: Python :: 3.8",
2424
"Programming Language :: Python :: 3.9",

ui/#run.sh#

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash
2+
3+
. common.sh
4+
5+
# Check if --build parameter is passed
6+
if [[ $1 == "--build" ]]; then
7+
# Run docker-compose up with project directory, verbose mode and build
8+
docker-compose --verbose -f docker-compose-prod.yml up --build
9+
else
10+
# Run docker-compose up with project directory and verbose mode
11+
docker-compose --verbose -f docker-compose-prod.yml up
12+
fi

ui/backend/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def load_requirements():
3434
"Development Status :: 5 - Production/Stable",
3535
"Intended Audience :: Developers",
3636
"Natural Language :: English",
37-
"License :: OSI Approved :: BSD License",
37+
"License :: OSI Approved :: Apache Software License",
3838
"Programming Language :: Python :: 3",
3939
"Programming Language :: Python :: 3.8",
4040
"Programming Language :: Python :: 3.9",

ui/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ Hamilton UI. After spinning up the Hamilton UI application, visit it to see your
6262

6363

6464
# License
65-
The code here is licensed under the BSD-3 Clear Clause license. See the main repository [LICENSE](../../LICENSE) for details.
65+
The code here is licensed under the Apache 2.0 license. See the main repository [LICENSE](../../LICENSE) for details.

ui/sdk/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ classifiers = [
1515
"Development Status :: 4 - Beta",
1616
"Intended Audience :: Developers",
1717
"Natural Language :: English",
18-
"License :: OSI Approved :: BSD License",
18+
"License :: OSI Approved :: Apache Software License",
1919
"Programming Language :: Python :: 3",
2020
"Programming Language :: Python :: 3.8",
2121
"Programming Language :: Python :: 3.9",

0 commit comments

Comments
 (0)