Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions lockfile.txt → lockfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -91,30 +91,26 @@
"artifacts": [
{
"algorithm": "sha256",
"hash": "828f7e7e51e157876f47c80518b23ba0c3c36aa8081efd39d5d39f393938aec9",
"url": "https://files.pythonhosted.org/packages/c8/0d/6c9eb15fd4f6f45973ff1c70c170f2c30803415874e2e47c92eeae509085/types_setuptools-57.4.14-py3-none-any.whl"
"hash": "9660b8774b12cd61b448e2fd87a667c02e7ec13ce9f15171f1d49a4654c4df6a",
"url": "https://files.pythonhosted.org/packages/14/45/b8368a8c2d1dc4fa47eb4db980966e23edecbda16fab7a38186b076bbd4d/types_setuptools-57.4.18-py3-none-any.whl"
},
{
"algorithm": "sha256",
"hash": "df02fe1dd244f58cf4e67cfc3d0a97930a2d61a72dd89f21d81c71017cd83f9a",
"url": "https://files.pythonhosted.org/packages/42/2e/d21d995feca499eac401958fee97879926249e60b8e5608f0361f0ee2ae1/types-setuptools-57.4.14.tar.gz"
"hash": "8ee03d823fe7fda0bd35faeae33d35cb5c25b497263e6a58b34c4cfd05f40bcf",
"url": "https://files.pythonhosted.org/packages/13/5e/3d46cd143913bd51dde973cd23b1d412de9662b08a3b8c213f26b265e6f1/types-setuptools-57.4.18.tar.gz"
}
],
"project_name": "types-setuptools",
"requires_dists": [],
"requires_python": null,
"version": "57.4.14"
"version": "57.4.18"
}
],
"platform_tag": [
"cp36",
"cp36m",
"macosx_10_16_x86_64"
]
"platform_tag": null
}
],
"path_mappings": {},
"pex_version": "2.1.80",
"pex_version": "2.1.102",
"prefer_older_binary": false,
"requirements": [
"ansicolors==1.1.8",
Expand All @@ -126,6 +122,10 @@
],
"resolver_version": "pip-2020-resolver",
"style": "universal",
"target_systems": [
"linux",
"mac"
],
"transitive": true,
"use_pep517": null
}
}
29 changes: 14 additions & 15 deletions pants.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Licensed under the Apache License, Version 2.0 (see LICENSE).

[GLOBAL]
pants_version = "2.12.0"
pants_version = "2.13.0"
backend_packages.add = [
"pants.backend.python",
"pants.backend.python.lint.docformatter",
Expand All @@ -12,20 +12,30 @@ backend_packages.add = [
"pants.backend.python.typecheck.mypy",
]

use_deprecated_directory_cli_args_semantics = false

# Pants' sponsor, Toolchain, offers remote caching, which can improve your CI performance
# with minimal configuration. For more details, visit https://toolchain.com

plugins.add = [
"toolchain.pants.plugin==0.20.0",
"toolchain.pants.plugin==0.22.0",
]

remote_cache_read = false
remote_cache_write = false
remote_store_address = "grpcs://cache.toolchain.com:443"
remote_auth_plugin = "toolchain.pants.auth.plugin:toolchain_auth_plugin"

# End Toolchain-specific configuration
# Configuration for Toolchain instrumentation and remote caching
# Visit https://toolchain.com and https://docs.toolchain.com/docs/getting-started-with-toolchain to enable and try it on your repository
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@benjyw fyi


[toolchain-setup]
org = "pantsbuild"
repo = "example-python"

[buildsense]
enable = false
# End Toolchain-specific configuration

[anonymous-telemetry]
enabled = true
Expand All @@ -51,7 +61,7 @@ interpreter_constraints = [">=3.7"]
# `generate-lockfiles` goal for Pants to generate the lockfile for you, although in some
# situations you may need to manually generate it, as explained in the docs.
enable_resolves = true
resolves = { python-default = "lockfile.txt"}
resolves = { python-default = "lockfile.lock"}

# Enable using the PEX lockfile format, which provides support for custom indexes, and
# improves performance for large repositories.
Expand All @@ -63,14 +73,3 @@ lockfile_generator = "pex"
# problematic system Pythons. See
# https://www.pantsbuild.org/docs/python-interpreter-compatibility#changing-the-interpreter-search-path.
search_path = ["<PATH>", "<PYENV>"]


# Configuration for Toolchain instrumentation and remote caching
# Visit https://toolchain.com to enable and try it on your repository

[toolchain-setup]
repo = "pants"
org = "example-python"

[buildsense]
enable = false