Skip to content

Commit 0349165

Browse files
committed
Change broken RST links
1 parent fdf93ed commit 0349165

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/ISSUE_TEMPLATE/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
blank_issues_enabled: false
1616
contact_links:
1717
- name: Troubleshooting
18-
url: https://github.com/newrelic/newrelic-python-agent/blob/main/README.rst#support
18+
url: https://github.com/newrelic/newrelic-python-agent/blob/main/README.md#support
1919
about: checkout the README for troubleshooting directions

.github/pull_request_template.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_Before contributing, please read our [contributing guidelines](https://github.com/newrelic/newrelic-python-agent/blob/main/CONTRIBUTING.rst) and [code of conduct](https://github.com/newrelic/.github/blob/master/CODE_OF_CONDUCT.md)._
1+
_Before contributing, please read our [contributing guidelines](https://github.com/newrelic/newrelic-python-agent/blob/main/CONTRIBUTING.md) and [code of conduct](https://github.com/newrelic/.github/blob/master/CODE_OF_CONDUCT.md)._
22

33
# Overview
44
Describe the changes present in the pull request
@@ -10,6 +10,6 @@ Include a link to the related GitHub issue, if applicable
1010
The agent includes a suite of tests which should be used to
1111
verify your changes don't break existing functionality. These tests will run with
1212
Github Actions when a pull request is made. More details on running the tests locally can be found
13-
[here](https://github.com/newrelic/newrelic-python-agent/blob/main/CONTRIBUTING.rst#testing-guidelines),
13+
[here](https://github.com/newrelic/newrelic-python-agent/blob/main/CONTRIBUTING.md#testing-guidelines),
1414
For most contributions it is strongly recommended to add additional tests which
1515
exercise your changes.

MANIFEST.in

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
include MANIFEST.in
2-
include README.rst
2+
include README.md
33
include LICENSE
44
include THIRD_PARTY_NOTICES.md
55
include newrelic/version.txt

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def newrelic_agent_next_version(version):
8989
if not script_directory:
9090
script_directory = os.getcwd()
9191

92-
readme_file = os.path.join(script_directory, "README.rst")
92+
readme_file = os.path.join(script_directory, "README.md")
9393

9494
if sys.platform == "win32" and python_version > (2, 6):
9595
build_ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError, IOError)

0 commit comments

Comments
 (0)