Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Python 3.7 #360

Merged
merged 4 commits into from
Aug 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-12,ubuntu-latest,windows-latest]
pyver: ["3.7","3.8","3.9","3.10"]
pyver: ["3.8","3.9","3.10"]
include:
# include the appropriate dependencies for testing SquashFS on each OS
- os: macos-12
Expand Down
4 changes: 2 additions & 2 deletions conda-recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ build:

requirements:
host:
- python >=3.7
- python >=3.8
- pip
run:
- python >=3.7
- python >=3.8
- setuptools

test:
Expand Down
19 changes: 19 additions & 0 deletions news/360-drop-py37
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
### Enhancements

* <news item>

### Bug fixes

* <news item>

### Deprecations

* <news item>

### Docs

* <news item>

### Other

* Dropped support for Python 3.7
59 changes: 31 additions & 28 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,33 +2,36 @@

import versioneer

setup(name='conda-pack',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url='https://conda.github.io/conda-pack/',
project_urls={"Source Code": "https://github.com/conda/conda-pack"},
maintainer='Jim Crist',
maintainer_email='jiminy.crist@gmail.com',
keywords='conda packaging',
classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: Software Development :: Build Tools"],
license='BSD',
description='Package conda environments for redistribution',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
packages=['conda_pack'],
package_data={'conda_pack': ['scripts/windows/*', 'scripts/posix/*']},
entry_points='''
setup(
name="conda-pack",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
url="https://conda.github.io/conda-pack/",
project_urls={"Source Code": "https://github.com/conda/conda-pack"},
maintainer="Jim Crist",
maintainer_email="jiminy.crist@gmail.com",
keywords="conda packaging",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: System :: Archiving :: Packaging",
"Topic :: System :: Software Distribution",
"Topic :: Software Development :: Build Tools",
],
license="BSD",
description="Package conda environments for redistribution",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
packages=["conda_pack"],
package_data={"conda_pack": ["scripts/windows/*", "scripts/posix/*"]},
entry_points="""
[console_scripts]
conda-pack=conda_pack.cli:main
''',
install_requires=['setuptools'],
python_requires='>=3.7',
zip_safe=False)
""",
install_requires=["setuptools"],
python_requires=">=3.8",
zip_safe=False,
)