Skip to content

Commit fd9238a

Browse files
committed
Remove requirements.txt from python whitelist
- Since it contains a flat list of both direct and indirect dependencies
1 parent edd58f4 commit fd9238a

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/checkout@v2
2424
- uses: actions/setup-go@v3
25-
- uses: stackaid/generate-stackaid-json@v1.6
25+
- uses: stackaid/generate-stackaid-json@v1.7
2626
```
2727
2828
This will commit a `stackaid.json` file in your repository which will then automatically show up for funding in the StackAid dashboard.

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ exports.FileTypes = {
1313
go: ['go.mod'],
1414
java: ['pom.xml'],
1515
php: ['composer.json'],
16-
python: ['pipfile', 'pyproject.toml', 'requirements.txt', 'setup.py'],
16+
python: ['pipfile', 'pyproject.toml', 'setup.py'],
1717
ruby: ['gemfile'],
1818
rust: ['cargo.toml'],
1919
};

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "stackaid-json-generator",
3-
"version": "1.6.0",
3+
"version": "1.7.0",
44
"private": false,
55
"description": "A GitHub action to generate a stackaid.json file based on your repository's dependency graph",
66
"main": "lib/src/main.js",

src/constants.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ export const FileTypes = {
44
go: ['go.mod'],
55
java: ['pom.xml'],
66
php: ['composer.json'],
7-
python: ['pipfile', 'pyproject.toml', 'requirements.txt', 'setup.py'],
7+
python: ['pipfile', 'pyproject.toml', 'setup.py'],
88
ruby: ['gemfile'],
99
rust: ['cargo.toml'],
1010
}

0 commit comments

Comments
 (0)