Skip to content

Commit

Permalink
Merge 416c4fd into 77512b2
Browse files Browse the repository at this point in the history
  • Loading branch information
lafrech committed Sep 7, 2020
2 parents 77512b2 + 416c4fd commit fd2ce62
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .travis.yml
Expand Up @@ -25,9 +25,9 @@ jobs:
include:

- { python: '3.8', env: TOXENV=lint }
- { python: '3.6', env: TOXENV=py36-pymongo }
- { python: '3.6', env: TOXENV=py36-motor1 }
- { python: '3.6', env: TOXENV=py36-txmongo }
- { python: '3.7', env: TOXENV=py37-pymongo }
- { python: '3.7', env: TOXENV=py37-motor1 }
- { python: '3.7', env: TOXENV=py37-txmongo }
- { python: '3.8', env: TOXENV=py38-pymongo }
- { python: '3.8', env: TOXENV=py38-motor2 }
- { python: '3.8', env: TOXENV=py38-txmongo }
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Expand Up @@ -122,6 +122,6 @@ Before you submit a pull request, check that it meets these guidelines:
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
3. The pull request should work for Python 3.6, 3.7 and 3.8. Check
3. The pull request should work for Python 3.7 and 3.8. Check
https://travis-ci.org/touilleMan/umongo/pull_requests
and make sure that the tests pass for all supported Python versions.
3 changes: 1 addition & 2 deletions setup.py
Expand Up @@ -29,7 +29,7 @@
url='https://github.com/touilleMan/umongo',
packages=['umongo', 'umongo.frameworks'],
include_package_data=True,
python_requires='>=3.6',
python_requires='>=3.7',
install_requires=requirements,
extras_require={
'motor': ['motor>=1.1,<3.0'],
Expand All @@ -45,7 +45,6 @@
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = lint,{py36,py37,py38}-{motor1,motor2,pymongo,txmongo}
envlist = lint,{py37,py38}-{motor1,motor2,pymongo,txmongo}

[testenv]
setenv =
Expand Down

0 comments on commit fd2ce62

Please sign in to comment.