Skip to content

Commit

Permalink
fix version specifier
Browse files Browse the repository at this point in the history
  • Loading branch information
crvernon committed Mar 21, 2024
1 parent 0354f04 commit 37d1032
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cerf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
from .install_supplement import install_package_data


__version__ = "2.3.2"
__version__ = "2.3.3"
5 changes: 4 additions & 1 deletion cerf/install_supplement.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ class InstallSupplement:
'2.2.1': 'https://zenodo.org/record/6998151/files/cerf_package_data.zip?download=1',
'2.3': 'https://zenodo.org/record/6998151/files/cerf_package_data.zip?download=1',
'2.3.1': 'https://zenodo.org/record/6998151/files/cerf_package_data.zip?download=1',
'2.3.2': 'https://zenodo.org/record/6998151/files/cerf_package_data.zip?download=1'}
'2.3.2': 'https://zenodo.org/record/6998151/files/cerf_package_data.zip?download=1',
'2.3.3': 'https://zenodo.org/record/6998151/files/cerf_package_data.zip?download=1',

}

def __init__(self, data_dir=None):

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def get_requirements():
description='An open-source geospatial Python package for assessing and analyzing future electricity technology capacity expansion feasibility',
long_description=readme(),
long_description_content_type="text/markdown",
python_requires='>=3.9.*, <4',
python_requires=">3.9",
include_package_data=True,
install_requires=[
'numpy>=1.19.4',
Expand Down

0 comments on commit 37d1032

Please sign in to comment.