Skip to content

Commit 1d833b1

Browse files
authored
feat: upgrade tests requirements and update metadata to show that pyp… (#111)
* feat: upgrade tests requirements and update metadata to show that pypy is supported * pytest is same price * feat: update tox config
1 parent 20a85ae commit 1d833b1

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
run: |
3636
pip install flake8
3737
pip install xmltodict==0.12.0
38-
pip install pytest==7.0.0
38+
pip install pytest==7.0.1
3939
pip install py==1.11.0
4040
# stop the build if there are Python syntax errors or undefined names
4141
flake8 json2xml/ --exit-zero

json2xml/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Vinit Kumar"""
44
__email__ = "[email protected]"
5-
__version__ = "3.15.0"
5+
__version__ = "3.15.1"

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup_requirements = []
1717

18-
test_requirements = ["pytest==7.0.0rc1", "py==1.11.0"]
18+
test_requirements = ["pytest==7.0.1", "py==1.11.0"]
1919

2020
setup(
2121
author="Vinit Kumar",
@@ -30,6 +30,9 @@
3030
"Programming Language :: Python :: 3.9",
3131
"Programming Language :: Python :: 3.10",
3232
"Programming Language :: Python :: 3.11",
33+
"Programming Language :: Python :: Implementation :: CPython",
34+
"Programming Language :: Python :: Implementation :: PyPy",
35+
"Topic :: Software Development :: Libraries :: Python Modules",
3336
],
3437
description="Simple Python Library to convert JSON to XML",
3538
install_requires=requirements,

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38, py39, py310, py311
2+
envlist = py38, py39, py310, py311, pypy37
33

44
[testenv:flake8]
55
basepython = python

0 commit comments

Comments
 (0)