Skip to content

Commit de9d966

Browse files
authored
Version 3.0 (#51)
* Update __version__.py Bump package version * update image * drop test support python bellow 3.9 * drop test support python bellow 3.9 * fix classfiers * fix py version on action * bump deps version * bump deps version * bump deps version * bump deps version * update ubuntu image
1 parent 14e110f commit de9d966

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed

.github/workflows/publish-to-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
release:
1111
name: Create Release
12-
runs-on: ubuntu-18.04
12+
runs-on: ubuntu-22.04
1313
steps:
1414
- name: Checkout code
1515
uses: actions/checkout@master

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on: [push, pull_request]
44

55
jobs:
66
test:
7-
runs-on: ubuntu-18.04
7+
runs-on: ubuntu-22.04
88
strategy:
99
max-parallel: 4
1010
matrix:
11-
python-version: [3.5, 3.6, 3.7, 3.8]
11+
python-version: [3.9, 3.10.16, 3.11, 3.12, 3.13]
1212
steps:
1313
- uses: actions/checkout@v2
1414

setup.py

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
]
1818

1919
dev_requirements = [
20-
"bandit==1.6.0",
21-
"codecov==2.0.15",
22-
"mypy==0.910",
23-
"pytest==4.6.2",
24-
"pytest-cov==2.7.1",
20+
"bandit>=1.6.0",
21+
"codecov>=2.0.15",
22+
"mypy>=0.910",
23+
"pytest>=4.6.2",
24+
"pytest-cov>=2.7.1",
2525
"pytest-mypy>=0.8.1",
2626
"types-requests>=2.25.6"
2727
]
2828

2929
setup(
3030
name='sgs',
3131
packages=['sgs'],
32-
python_requires=">=3.5",
32+
python_requires=">=3.6",
3333
install_requires=requirements,
3434
extras_require={
3535
'dev': dev_requirements
@@ -47,9 +47,12 @@
4747
'Development Status :: 4 - Beta',
4848
'Intended Audience :: Developers',
4949
'Intended Audience :: Science/Research',
50-
'License :: OSI Approved :: MIT License',
51-
'Programming Language :: Python :: 3.5',
52-
'Programming Language :: Python :: 3.6',
50+
'License :: OSI Approved :: MIT License',
51+
'Programming Language :: Python :: 3.9',
52+
'Programming Language :: Python :: 3.10',
53+
'Programming Language :: Python :: 3.11',
54+
'Programming Language :: Python :: 3.12',
55+
'Programming Language :: Python :: 3.13',
5356
'Topic :: Scientific/Engineering :: Information Analysis',
5457
],
5558
)

sgs/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.1.1"
1+
__version__ = "3.0.0"

0 commit comments

Comments
 (0)