Skip to content

Commit

Permalink
Drop Python 3.6
Browse files Browse the repository at this point in the history
Drops support for python 3.6 as the new hepdata-validator version no longer supports this.
  • Loading branch information
ItIsJordan committed Aug 23, 2023
1 parent 5bece38 commit 009478b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: [ubuntu-latest]
strategy:
matrix:
python-version: [3.6]
python-version: [3.9]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
matrix:
os: [ubuntu-latest]
root-version: ["6.24", "6.26"]
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10"]
exclude:
- root-version: "6.24"
python-version: "3.10"
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand All @@ -37,7 +36,7 @@
keywords='HEPData physics OpenData',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
zip_safe=False,
python_requires='>=3.6',
python_requires='>=3.7',
install_requires=DEPS,
setup_requires=['pytest-runner', 'pytest-cov'],
tests_require=[
Expand Down

0 comments on commit 009478b

Please sign in to comment.