Skip to content

Commit

Permalink
Merge pull request #624 from avalentino/bugfix/setup_requires
Browse files Browse the repository at this point in the history
Move setuptools to setup_requires
  • Loading branch information
djhoese authored Oct 7, 2024
2 parents 9becb0d + 85840cf commit 753227c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

import versioneer

requirements = ['setuptools>=3.2', 'pyproj>=3.0', 'configobj',
requirements = ['pyproj>=3.0', 'configobj',
'pykdtree>=1.3.1', 'pyyaml', 'numpy>=1.21.0',
"shapely", "donfig", "platformdirs",
]
Expand Down Expand Up @@ -103,6 +103,7 @@
package_data={'pyresample.test': ['test_files/*']},
include_package_data=True,
python_requires='>=3.9',
setup_requires=['setuptools>=3.2'],
install_requires=requirements,
extras_require=extras_require,
ext_modules=extensions,
Expand Down

0 comments on commit 753227c

Please sign in to comment.