Skip to content

Commit b360223

Browse files
author
Sam Harrison
committed
chore: update license references
1 parent b42050c commit b360223

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include README.rst
2-
include LICENSE.md
2+
include LICENSE
33
include app.json
44
include Procfile
55
include requirements.txt

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![codecov](https://img.shields.io/codecov/c/github/sendgrid/sendgrid-python/main.svg?style=flat-square&label=Codecov+Coverage)](https://codecov.io/gh/sendgrid/sendgrid-python)
55
[![Docker Badge](https://img.shields.io/docker/automated/sendgrid/sendgrid-python.svg)](https://hub.docker.com/r/sendgrid/sendgrid-python/)
66
[![Email Notifications Badge](https://dx.sendgrid.com/badge/python)](https://dx.sendgrid.com/newsletter/python)
7-
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](./LICENSE.md)
7+
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](LICENSE)
88
[![Twitter Follow](https://img.shields.io/twitter/follow/sendgrid.svg?style=social&label=Follow)](https://twitter.com/sendgrid)
99
[![GitHub contributors](https://img.shields.io/github/contributors/sendgrid/sendgrid-python.svg)](https://github.com/sendgrid/sendgrid-python/graphs/contributors)
1010
[![Open Source Helpers](https://www.codetriage.com/sendgrid/sendgrid-python/badges/users.svg)](https://www.codetriage.com/sendgrid/sendgrid-python)
@@ -221,4 +221,4 @@ If you've instead found a bug in the library or would like new features added, g
221221

222222
<a name="license"></a>
223223
# License
224-
[The MIT License (MIT)](LICENSE.md)
224+
[The MIT License (MIT)](LICENSE)

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ License
286286
.. _Improvements to the Codebase: https://github.com/sendgrid/sendgrid-python/blob/HEAD/CONTRIBUTING.md#improvements-to-the-codebase
287287
.. _Review Pull Requests: https://github.com/sendgrid/sendgrid-python/blob/HEAD/CONTRIBUTING.md#code-reviews
288288
.. _troubleshooting guide: https://github.com/sendgrid/sendgrid-python/blob/HEAD/TROUBLESHOOTING.md
289-
.. _The MIT License (MIT): https://github.com/sendgrid/sendgrid-python/blob/HEAD/LICENSE.md
289+
.. _The MIT License (MIT): https://github.com/sendgrid/sendgrid-python/blob/HEAD/LICENSE
290290

291291
.. |Travis Badge| image:: https://travis-ci.org/sendgrid/sendgrid-python.svg?branch=main
292292
:target: https://travis-ci.org/sendgrid/sendgrid-python
@@ -301,7 +301,7 @@ License
301301
.. |Email Notifications Badge| image:: https://dx.sendgrid.com/badge/python
302302
:target: https://dx.sendgrid.com/newsletter/python
303303
.. |MIT licensed| image:: https://img.shields.io/badge/license-MIT-blue.svg
304-
:target: ./LICENSE.md
304+
:target: ./LICENSE
305305
.. |Twitter Follow| image:: https://img.shields.io/twitter/follow/sendgrid.svg?style=social&label=Follow
306306
:target: https://twitter.com/sendgrid
307307
.. |GitHub contributors| image:: https://img.shields.io/github/contributors/sendgrid/sendgrid-python.svg

test/test_project.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ def test_contributing(self):
3535
def test_issue_template(self):
3636
self.assertTrue(os.path.isfile('./ISSUE_TEMPLATE.md'))
3737

38-
# ./LICENSE.md
38+
# ./LICENSE
3939
def test_license(self):
40-
self.assertTrue(os.path.isfile('./LICENSE.md'))
40+
self.assertTrue(os.path.isfile('./LICENSE'))
4141

4242
# ./PULL_REQUEST_TEMPLATE.md
4343
def test_pr_template(self):

test/test_sendgrid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2297,7 +2297,7 @@ def test_whitelabel_links__link_id__subuser_post(self):
22972297
self.assertEqual(response.status_code, 200)
22982298

22992299
def test_license_year(self):
2300-
LICENSE_FILE = 'LICENSE.md'
2300+
LICENSE_FILE = 'LICENSE'
23012301
copyright_line = ''
23022302
with open(LICENSE_FILE, 'r') as f:
23032303
for line in f:

0 commit comments

Comments
 (0)