Skip to content

Commit

Permalink
Add support for py312
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea committed Aug 29, 2024
1 parent 7a36163 commit ac293c8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']

steps:
- name: Checkout pull request HEAD commit instead of merge commit
Expand Down
11 changes: 9 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,14 @@ classifiers =
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
packages = find:
python_requires = >=3.9

install_requires =
ansible-core
Expand All @@ -23,17 +28,19 @@ install_requires =
attrs>=21.4.0,<23
bleach>=3.3.0,<4
bleach-allowlist>=1.0.3,<2
flake8>=5.0.0,<7
flake8>=5.0.0,<8
markdown>=3.3.4,<4
pyyaml>=5.4.1,<7
requests>=2.28.0,<3
semantic-version>=2.9.0,<3
setuptools # needed for pkg_resources import

[options.extras_require]
dev =
black>=21.7b0
GitPython>=3.1.20
pyfakefs>=4.4.0,<5
pyfakefs>=4.4.0,<5; python_version < "3.12"
pyfakefs>=5.3.0; python_version >= "3.12"
pytest>=7.0.0,<8
pytest-cov>=3.0.0,<5
pytest_mock>=3.8.0,<4
Expand Down

0 comments on commit ac293c8

Please sign in to comment.