Skip to content

Commit

Permalink
Remove Python 2.7 and 3.6 support due to being EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
dbast committed Jan 24, 2022
1 parent 5a008b1 commit ce4426b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
fail-fast: false
matrix:
os: [macos-latest,ubuntu-latest,windows-latest]
pyver: ["3.6","3.7","3.8","3.9","3.10"]
pyver: ["3.7","3.8","3.9","3.10"]
include:
# include the appropriate dependencies for testing SquashFS on each OS
- os: macos-latest
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
- python >=3.7
- pip
run:
- python
- python >=3.7
- setuptools

test:
Expand Down
2 changes: 1 addition & 1 deletion conda_pack/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class CondaEnv(object):
>>> env = (CondaEnv.from_default()
... .exclude("*.pyx")
... .include("lib/python3.6/site-packages/cytoolz/*.pyx"))
... .include("lib/python3.7/site-packages/cytoolz/*.pyx"))
CondaEnv<'~/miniconda/envs/example', 1234 files>
"""
def __init__(self, prefix, files, excluded_files=None):
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
keywords='conda packaging',
classifiers=["Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
Expand All @@ -31,5 +30,5 @@
conda-pack=conda_pack.cli:main
''',
install_requires=['setuptools'],
python_requires='>=3.6',
python_requires='>=3.7',
zip_safe=False)

0 comments on commit ce4426b

Please sign in to comment.