Skip to content

Commit

Permalink
Merge pull request #200 from simleo/bump_supported_versions
Browse files Browse the repository at this point in the history
Bump supported python versions
  • Loading branch information
simleo authored Sep 24, 2024
2 parents 5817375 + 428f508 commit a2dec85
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.8', '3.9', '3.10', '3.11']
python-version: ['3.9', '3.10', '3.11', '3.12']

runs-on: ${{ matrix.os }}

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7-buster
FROM python:3.12

COPY ./ /ro-crate-py
WORKDIR /ro-crate-py
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ro-crate-py is a Python library to create and consume [Research Object Crates](h

## Installation

ro-crate-py requires Python 3.7 or later. The easiest way to install is via [pip](https://docs.python.org/3/installing/):
ro-crate-py requires Python 3.9 or later. The easiest way to install is via [pip](https://docs.python.org/3/installing/):

```
pip install rocrate
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
'Raül Sirvent',
'Stian Soiland-Reyes'
)),
python_requires='>=3.7',
python_requires='>=3.9',
author_email='[email protected]',
package_data={'': ['data/*.jsonld', 'templates/*.j2']},
# SPDX, pending https://github.com/pombredanne/spdx-pypi-pep/pull/2
Expand All @@ -88,10 +88,10 @@
'Intended Audience :: Information Technology',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: System :: Archiving',
Expand Down

0 comments on commit a2dec85

Please sign in to comment.