Skip to content

Commit

Permalink
Merge pull request #54 from HEPData/allow-python3.6
Browse files Browse the repository at this point in the history
Reinstate support for Python 3.6
  • Loading branch information
GraemeWatt authored Aug 24, 2023
2 parents dcd80d3 + 36ff72b commit 1434ae9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,14 @@ jobs:

test:

runs-on: ubuntu-latest
runs-on: ${{ matrix.runner }}
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9' ]
runner: ['ubuntu-latest']
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
include:
- runner: 'ubuntu-20.04'
python-version: '3.6'

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion hepdata_validator/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@

from __future__ import absolute_import, print_function

__version__ = "0.3.4"
__version__ = "0.3.5"
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def run_tests(self):
test_suite='hepdata_validator.testsuite',
tests_require=test_requirements,
cmdclass={'test': PyTest},
python_requires='>=3.7',
python_requires='>=3.6',
entry_points={
'console_scripts': ['hepdata-validate=hepdata_validator.cli:validate'],
}
Expand Down

0 comments on commit 1434ae9

Please sign in to comment.