Skip to content

Commit 9df4c57

Browse files
authored
Merge pull request #180 from hjmodi/bump_version
Bump version
2 parents 4c5a5d7 + 4c209cd commit 9df4c57

File tree

3 files changed

+10
-28
lines changed

3 files changed

+10
-28
lines changed

.github/workflows/unittests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.7", "3.8", "3.9"]
19+
python-version: ["3.8", "3.9"]
2020

2121
steps:
2222
- uses: actions/checkout@v3

requirements.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
setuptools-rust==1.1.2
2-
jinja2==3.0.3
3-
boto3==1.20.45
4-
botocore==1.23.45
5-
click==8.0.3
6-
requests==2.27.1
7-
PyYAML==6.0
1+
setuptools-rust==1.7.0
2+
Jinja2==3.1.2
3+
boto3==1.28.46
4+
botocore==1.31.46
5+
click==8.1.7
6+
requests==2.31.0
7+
PyYAML==6.0.1
88
defusedxml==0.7.1
99
subresource-integrity==0.2
10-
jsonschema==3.2.0
10+
jsonschema==4.19.0

setup.py

Lines changed: 1 addition & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,9 @@
1313
See the License for the specific language governing permissions and
1414
limitations under the License.
1515
"""
16-
17-
# !/usr/bin/env python
18-
19-
import re
20-
2116
from setuptools import setup, find_packages
2217

23-
version = "1.1.2"
18+
version = "1.2.1"
2419

2520
# f = open('README.md')
2621
# long_description = f.read().strip()
@@ -33,18 +28,6 @@
3328
in future. And Ronda service will be hosted in AWS S3.
3429
"""
3530

36-
37-
def _get_requirements(path):
38-
try:
39-
with open(path, encoding="utf-8") as f:
40-
packages = f.read().splitlines()
41-
except (IOError, OSError) as ex:
42-
raise RuntimeError(f"Can't open file with requirements: {ex}") from ex
43-
packages = (p.strip() for p in packages if not re.match(r'^\s*#', p))
44-
packages = list(filter(None, packages))
45-
return packages
46-
47-
4831
setup(
4932
zip_safe=True,
5033
name="charon",
@@ -62,7 +45,6 @@ def _get_requirements(path):
6245
author="RedHat EXD SPMM",
6346
license="APLv2",
6447
packages=find_packages(exclude=["ez_setup", "examples", "tests"]),
65-
install_requires=_get_requirements('requirements.txt'),
6648
package_data={'charon': ['schemas/*.json']},
6749
test_suite="tests",
6850
entry_points={

0 commit comments

Comments
 (0)