Skip to content

Commit

Permalink
Set molecule version range to 6.0.0 to 6.0.3
Browse files Browse the repository at this point in the history
Restrict the required versions of molecule to the versions that are unit
tested with tox.

Set the python version to the minimum required by molecule in that
range.
  • Loading branch information
meffie committed Jan 18, 2024
1 parent 84931b5 commit 5ef6048
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,17 @@ def find_version():
},
install_requires=[
# molecule plugins are not allowed to mention Ansible as a direct dependency
'molecule>=4.0.1',
'pyyaml',
'molecule>=6.0.0,<=6.0.3',
'PyYAML',
'proxmoxer>=1.3.1',
],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
python_requires='>=3.6',
python_requires='>=3.10',
)

0 comments on commit 5ef6048

Please sign in to comment.