Skip to content
This repository was archived by the owner on Sep 14, 2023. It is now read-only.

Commit 7b6459f

Browse files
authored
Avoid pre-release dependencies (#91)
Packages should never have pre-release dependencies.
1 parent 0369989 commit 7b6459f

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ classifiers =
3535
Programming Language :: Python :: 3.6
3636
Programming Language :: Python :: 3.7
3737
Programming Language :: Python :: 3.8
38+
Programming Language :: Python :: 3.9
3839
Programming Language :: Python :: Implementation :: CPython
3940
Programming Language :: Python :: Implementation :: PyPy
4041
Topic :: Software Development :: Testing
@@ -69,7 +70,7 @@ setup_requires =
6970
# many projects using pytest-molecule. By listing them as dependencies we
7071
# avoid installing versions that are not compatible.
7172
install_requires =
72-
molecule[test]>=3.1.0a2
73+
molecule[test]>=3.1.0
7374
pytest-html
7475

7576
[options.extras_require]

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ extras =
3232
podman
3333
vagrant
3434
deps =
35-
py{36,37,38,39}: molecule[test,docker]>=3.1.0a2
35+
py{36,37,38,39}: molecule[test,docker]
3636
devel: git+https://github.com/pycontribs/ansi2html.git#egg=ansi2html
3737
devel: git+https://github.com/pytest-dev/pytest-html.git#egg=pytest-html
3838
devel: git+https://github.com/ansible-community/molecule#egg=molecule[test,docker]
39-
devel: ansible>=2.10.0a2
39+
devel: ansible>=2.10
4040
setenv =
4141
ANSIBLE_FORCE_COLOR={env:ANSIBLE_FORCE_COLOR:1}
4242
# ANSIBLE_INVENTORY={env:ANSIBLE_INVENTORY:{toxinidir}/../zuul-infra/inventory.yml}

0 commit comments

Comments
 (0)