Skip to content

Commit ec0a2db

Browse files
authored
Merge pull request #5733: Configure pants_ignore and bump pants to v2.14.0rc1
2 parents 4ebd7fd + de76c96 commit ec0a2db

File tree

2 files changed

+21
-2
lines changed

2 files changed

+21
-2
lines changed

CHANGELOG.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Added
5353

5454
* Begin introducing `pants <https://www.pantsbuild.org/docs>`_ to improve DX (Developer Experience)
5555
working on StackStorm, improve our security posture, and improve CI reliability thanks in part
56-
to pants' use of PEX lockfiles. This is not a user-facing addition. #5713 #5724 #5726 #5725 #5732
56+
to pants' use of PEX lockfiles. This is not a user-facing addition. #5713 #5724 #5726 #5725 #5732 #5733
5757
Contributed by @cognifloyd
5858

5959
Changed

pants.toml

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[GLOBAL]
2-
pants_version = "2.13.0rc2"
2+
pants_version = "2.14.0rc1"
33
backend_packages = [
44
# python
55
"pants.backend.python",
@@ -9,6 +9,25 @@ backend_packages = [
99
# shell
1010
"pants.backend.shell",
1111
]
12+
# pants ignores files in .gitignore, .*/ directories, /dist/ directory, and __pycache__.
13+
pants_ignore.add = [
14+
# TODO: remove these once we start building wheels with pants.
15+
"dist_utils.py",
16+
"setup.py",
17+
# keep tailor from using legacy requirements files (not for pants)
18+
"contrib/examples/requirements.txt",
19+
"contrib/hello_st2/requirements.txt",
20+
"contrib/runners/*/in-requirements.txt",
21+
"contrib/runners/*/requirements.txt",
22+
"st2*/in-requirements.txt",
23+
"st2*/requirements.txt",
24+
"st2common/tests/fixtures/requirements-used-for-tests.txt",
25+
"/fixed-requirements.txt",
26+
"/test-requirements.txt",
27+
# keep requirements.txt for now. We might ignore it if we need an alternate interrim
28+
# file that is decoupled from our legacy requirements files generation.
29+
# "/requirements.txt",
30+
]
1231

1332
[source]
1433
# recording each pack individually under root patterns is not great, but resolves these issues:

0 commit comments

Comments
 (0)