| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,20 +3,18 @@ workflows: | |||
| 3 | 3 | version: 2 | |
| 4 | 4 | test: | |
| 5 | 5 | jobs: | |
| 6 | + - test-3.13 | ||
| 7 | + - test-3.12 | ||
| 8 | + - test-3.11 | ||
| 6 | 9 | - test-3.10 | |
| 7 | 10 | - test-3.9 | |
| 8 | - - test-3.8 | ||
| 9 | - - test-3.7 | ||
| 10 | - - test-3.6 | ||
| 11 | - - test-3.5 | ||
| 12 | - - test-3.4 | ||
| 13 | 11 | - test-2.7 | |
| 14 | 12 | - test-pypy3 | |
| 15 | 13 | - test-pypy2 | |
| 16 | 14 | jobs: | |
| 17 | - test-3.10: &test-template | ||
| 15 | + test-3.13: &test-template | ||
| 18 | 16 | docker: | |
| 19 | - - image: python:3.10 # We run one test in non-alpine environment, just in case | ||
| 17 | + - image: python:3.13 # We run one test in non-alpine environment, just in case | ||
| 20 | 18 | working_directory: ~/work | |
| 21 | 19 | steps: | |
| 22 | 20 | - checkout | |
@@ -37,30 +35,22 @@ jobs: | |||
| 37 | 35 | command: | | |
| 38 | 36 | . venv/bin/activate | |
| 39 | 37 | pytest -v | |
| 40 | - test-3.9: | ||
| 41 | - <<: *test-template | ||
| 42 | - docker: | ||
| 43 | - - image: python:3.9-alpine | ||
| 44 | - test-3.8: | ||
| 38 | + test-3.12: | ||
| 45 | 39 | <<: *test-template | |
| 46 | 40 | docker: | |
| 47 | - - image: python:3.8-alpine | ||
| 48 | - test-3.7: | ||
| 41 | + - image: python:3.12-alpine | ||
| 42 | + test-3.11: | ||
| 49 | 43 | <<: *test-template | |
| 50 | 44 | docker: | |
| 51 | - - image: python:3.7-alpine | ||
| 52 | - test-3.6: | ||
| 45 | + - image: python:3.11-alpine | ||
| 46 | + test-3.10: | ||
| 53 | 47 | <<: *test-template | |
| 54 | 48 | docker: | |
| 55 | - - image: python:3.6-alpine | ||
| 56 | - test-3.5: | ||
| 57 | - <<: *test-template | ||
| 58 | - docker: | ||
| 59 | - - image: python:3.5-alpine | ||
| 60 | - test-3.4: | ||
| 49 | + - image: python:3.10-alpine | ||
| 50 | + test-3.9: | ||
| 61 | 51 | <<: *test-template | |
| 62 | 52 | docker: | |
| 63 | - - image: python:3.4-alpine | ||
| 53 | + - image: python:3.9-alpine | ||
| 64 | 54 | test-2.7: | |
| 65 | 55 | <<: *test-template | |
| 66 | 56 | docker: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -12,14 +12,11 @@ | |||
| 12 | 12 | ||
| 13 | 13 | setup( | |
| 14 | 14 | name='smpplib', | |
| 15 | - version='2.2.3', | ||
| 15 | + version='2.2.4', | ||
| 16 | 16 | url='https://github.com/python-smpplib/python-smpplib', | |
| 17 | 17 | description='SMPP library for python', | |
| 18 | 18 | packages=find_packages(), | |
| 19 | 19 | install_requires=['six'], | |
| 20 | - extras_require=dict( | ||
| 21 | - tests=('typing; python_version < "3.5"', 'pytest', 'mock'), | ||
| 22 | - ), | ||
| 23 | 20 | zip_safe=True, | |
| 24 | 21 | classifiers=( | |
| 25 | 22 | 'Development Status :: 5 - Production/Stable', | |
@@ -29,10 +26,11 @@ | |||
| 29 | 26 | 'Programming Language :: Python :: 2', | |
| 30 | 27 | 'Programming Language :: Python :: 2.7', | |
| 31 | 28 | 'Programming Language :: Python :: 3', | |
| 32 | - 'Programming Language :: Python :: 3.4', | ||
| 33 | - 'Programming Language :: Python :: 3.5', | ||
| 34 | - 'Programming Language :: Python :: 3.6', | ||
| 35 | - 'Programming Language :: Python :: 3.7', | ||
| 29 | + 'Programming Language :: Python :: 3.9', | ||
| 30 | + 'Programming Language :: Python :: 3.10', | ||
| 31 | + 'Programming Language :: Python :: 3.11', | ||
| 32 | + 'Programming Language :: Python :: 3.12', | ||
| 33 | + 'Programming Language :: Python :: 3.13', | ||
| 36 | 34 | 'Programming Language :: Python', | |
| 37 | 35 | 'Topic :: Communications :: Telephony', | |
| 38 | 36 | 'Topic :: Communications', | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,6 +1,6 @@ | |||
| 1 | 1 | import warnings | |
| 2 | 2 | import pytest | |
| 3 | - from mock import Mock, call | ||
| 3 | + from unittest.mock import Mock, call | ||
| 4 | 4 | ||
| 5 | 5 | from smpplib.client import Client | |
| 6 | 6 | from smpplib.smpp import make_pdu | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,7 +1,7 @@ | |||
| 1 | 1 | # -*- coding: utf8 -*- | |
| 2 | 2 | ||
| 3 | - import mock | ||
| 4 | 3 | from pytest import mark, raises | |
| 4 | + from unittest import mock | ||
| 5 | 5 | ||
| 6 | 6 | from smpplib import consts | |
| 7 | 7 | from smpplib.gsm import gsm_encode, make_parts, make_parts_encoded | |
| Back | FazBrowse Home | New Git URL |
0 commit comments