Skip to content

Commit

Permalink
Merge branch 'fix-pypi' into 'main'
Browse files Browse the repository at this point in the history
Add long_description and increase python version

See merge request pqs/pulser/pulser-myqlm!45
  • Loading branch information
a-corni committed Oct 8, 2024
2 parents 8b1bdc8 + 5e8b44c commit dcdb0da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/python/tags/
default:
image: python:3.8
image: python:3.9

# Change pip's cache directory to be inside the project directory since we can
# only cache local items.
Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,14 @@
name=distribution_name,
version=__version__,
description=description,
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
install_requires=requirements,
extras_require={"dev": dev_requirements, "test_dev": test_requirements},
packages=find_packages(),
include_package_data=True,
author="Pasqal Quantum Solutions / Pulser Development Team",
python_requires=">=3.8.0",
python_requires=">=3.9.0",
license="Apache 2.0",
)

Expand Down

0 comments on commit dcdb0da

Please sign in to comment.