We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f6d9fd2 commit 7f31185Copy full SHA for 7f31185
.github/workflows/release.yml
@@ -86,11 +86,9 @@ jobs:
86
python setup.py sdist
87
mv dist/*.tar.gz wheelhouse/
88
- name: Publish package distributions to PyPI
89
- uses: pypa/gh-action-pypi-publish@release/v1
90
- with:
91
- packages-dir: wheelhouse/
92
- skip-existing: true
93
- verbose: true
+ run: |
+ python -m pip install twine
+ python -m twine upload --skip-existing wheelhouse/*
94
image_publish:
95
name: Build & push images
96
# only trigger on main repo when tag starts with v
setup.py
@@ -88,11 +88,9 @@ def get_version():
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Programming Language :: Python :: 3.11",
- "Programming Language :: Python :: 3.12",
- "Programming Language :: Python :: 3.13",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 2",
+ "Programming Language :: Python :: 3",
]
97
98
@@ -110,7 +108,6 @@ def get_version():
110
108
author_email="[email protected]",
111
109
packages=find_packages(),
112
include_package_data=True,
113
- python_requires=">=3.6",
114
data_files=[("bin", ["bin/envd"])],
115
classifiers=classifiers,
116
zip_safe=False,
0 commit comments