Skip to content
Draft
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
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
coverage:
executor:
name: orb/default
version: "3.6"
version: "3.9"
steps:
- orb/setup
- run: inv ci.make-sudouser
Expand All @@ -20,7 +20,7 @@ jobs:
regression:
executor:
name: orb/default
version: "3.6"
version: "3.9"
steps:
- orb/setup
- run: inv regression
Expand All @@ -29,7 +29,7 @@ jobs:
doctests:
executor:
name: orb/default
version: "3.6"
version: "3.9"
steps:
- orb/setup
- run: inv www.doctest
Expand All @@ -38,7 +38,7 @@ jobs:
typecheck:
executor:
name: orb/default
version: "3.6"
version: "3.9"
steps:
- orb/setup
- run: mypy .
Expand All @@ -65,7 +65,7 @@ workflows:
requires: ["Test"]
matrix:
parameters:
version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
- orb/docs:
name: "Docs"
requires: ["Test"]
Expand Down
75 changes: 75 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,60 @@
[project]
name = "invoke"
description = "Pythonic task execution"
readme = "README.rst"

# Don't forget to also update invoke/_version.py!
version = "2.2.0"

license = "BSD-3-Clause"
license-files = [ "LICENSE" ]
authors = [
{ name = "Jeff Forcier", email="[email protected]" },
{ name = "Jaroslav Henner", email = "[email protected]" }
]
requires-python = ">=3.6.2"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Software Distribution",
"Topic :: System :: Systems Administration"
]

[project.urls]
Homepage = "https://pyinvoke.org/"
Docs = "https://docs.pyinvoke.org/"
Repository = "https://github.com/pyinvoke/invoke"
Issues = "https://github.com/pyinvoke/invoke/issues"
Changelog = "https://www.pyinvoke.org/changelog.html"
CI = "https://app.circleci.com/pipelines/github/pyinvoke/invoke"

[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"

[project.scripts]
invoke = "invoke.main:program.run"
inv = "invoke.main:program.run"

[tool.mypy]
# check_untyped_defs = true
# follow_imports_for_stubs = true
Expand Down Expand Up @@ -50,3 +107,21 @@ ignore_missing_imports = true
[[tool.mypy.overrides]]
module = "pytest_relaxed"
ignore_missing_imports = true


[dependency-groups]
dev = [
"alabaster==0.7.12",
"black>=22.8,<22.9",
"coverage>=6.2,<7",
"flake8>=4,<5",
"icecream>=2.1",
"invocations>=3.3",
"invoke",
"mypy==0.971",
"pytest-cov>=4",
"pytest-relaxed>=2",
"releases>=2",
"types-pyyaml==6.0.12.4",
"uv"
]
78 changes: 0 additions & 78 deletions setup.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# and then run "tox" from this directory.

[tox]
envlist = py36, py37, py38, py39, 'py310', py311
envlist = py39, 'py310', py311, py312, py313

[testenv]
commands =
pip install -r dev-requirements.txt
pip install -e .[dev]
spec