diff --git a/.github/workflows/lint_unit_tests.yml b/.github/workflows/lint_unit_tests.yml index de0712676..637ff89ec 100644 --- a/.github/workflows/lint_unit_tests.yml +++ b/.github/workflows/lint_unit_tests.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-20.04 strategy: matrix: - python-version: ["3.8", "3.9"] + python-version: ["3.8"] steps: - name: Checking out repo diff --git a/setup.py b/setup.py index 0227345e7..7f8ae3f92 100644 --- a/setup.py +++ b/setup.py @@ -6,8 +6,8 @@ LONG_DESCRIPTION = f.read() setup(name='pipelinewise', - python_requires='>=3.8,<3.10', - version='0.61.0', + python_requires='>=3.8,<=3.8', + version='0.62.0', description='PipelineWise', long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', @@ -17,7 +17,6 @@ 'License :: OSI Approved :: Apache Software License', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.8', - 'Programming Language :: Python :: 3.9', ], install_requires=[ 'argparse==1.4.0',