Skip to content

Commit

Permalink
be consistent about >3.10 across all our libs
Browse files Browse the repository at this point in the history
  • Loading branch information
rahulbot committed Dec 13, 2023
1 parent 44b0ae7 commit 82ede7a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.10", "3.11"]

steps:
- uses: actions/checkout@v3

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
test_suite="mediacloud.test",
packages=['mcmetadata'],
package_data={'': ['LICENSE'], 'mcmetadata': ['data/*.*']},
python_requires='>3.7',
python_requires='>=3.10',
install_requires=REQUIRED_PACKAGES,
tests_require=['parameterized'],
project_urls={
Expand Down

0 comments on commit 82ede7a

Please sign in to comment.