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
2 changes: 1 addition & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
release:
name: Create Release
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@master
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
strategy:
max-parallel: 4
matrix:
python-version: [3.5, 3.6, 3.7, 3.8]
python-version: [3.9, 3.10.16, 3.11, 3.12, 3.13]
steps:
- uses: actions/checkout@v2

Expand Down
21 changes: 12 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@
]

dev_requirements = [
"bandit==1.6.0",
"codecov==2.0.15",
"mypy==0.910",
"pytest==4.6.2",
"pytest-cov==2.7.1",
"bandit>=1.6.0",
"codecov>=2.0.15",
"mypy>=0.910",
"pytest>=4.6.2",
"pytest-cov>=2.7.1",
"pytest-mypy>=0.8.1",
"types-requests>=2.25.6"
]

setup(
name='sgs',
packages=['sgs'],
python_requires=">=3.5",
python_requires=">=3.6",
install_requires=requirements,
extras_require={
'dev': dev_requirements
Expand All @@ -47,9 +47,12 @@
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Scientific/Engineering :: Information Analysis',
],
)
2 changes: 1 addition & 1 deletion sgs/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.1.1"
__version__ = "3.0.0"