Skip to content

Commit

Permalink
Merge pull request #183 from jenshnielsen/pyproject_toml
Browse files Browse the repository at this point in the history
Pin packaging to < 22 for drivers using legacy versions and pin ipython to 8.6
  • Loading branch information
jenshnielsen authored Dec 12, 2022
2 parents c1ed848 + 087c667 commit 3f0d7c9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ name = "qcodes_contrib_drivers"
description = "User contributed drivers for QCoDeS"
classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Topic :: Scientific/Engineering",]
requires-python = ">=3.8"
dependencies = [ "qcodes>=0.33.0", "versioningit>=1.1.0",]
# Some drivers are making use of legacy versions removed in packaging 22.0
dependencies = [ "qcodes>=0.33.0", "versioningit>=1.1.0", "packaging<22.0"]
dynamic = [ "version",]

[[project.maintainers]]
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
mypy==0.991
ipython==8.6.0

0 comments on commit 3f0d7c9

Please sign in to comment.