Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

language: python
python:
- 3.7
- "3.10"

# Command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
install: pip install -U tox-travis
Expand All @@ -23,4 +23,4 @@ deploy:
on:
tags: true
repo: vikramarsid/msg_parser
python: 3.7
python: "3.10"
2 changes: 1 addition & 1 deletion requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tox==3.24.5
coverage==6.3.2
Sphinx==4.4.0
twine>=1.12.1
pytest==7.1.1
pytest==9.0.3
Comment thread
cursor[bot] marked this conversation as resolved.
pytest-runner==5.3.1
black>=19.10b0
isort>=4.3.10
Expand Down
9 changes: 4 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,9 @@
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: Implementation :: CPython',
],
entry_points={
Expand All @@ -55,7 +54,7 @@
include_package_data=True,
keywords='msg_parser',
packages=find_packages(include=['msg_parser']),
python_requires=">=3.4",
python_requires=">=3.10",
test_suite='tests',
tests_require=test_requirements,
zip_safe=False,
Expand Down
4 changes: 2 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist = py37, flake8
envlist = py310, flake8

[travis]
python =
3.7: py37
3.10: py310

[testenv:flake8]
basepython = python
Expand Down
Loading