-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add pyproject.toml #255
Add pyproject.toml #255
Conversation
Two quick notes:
|
Absolutely no rush. I only proposed this because I tried to create a venv and uv wouldn't let me. Happy to use setuptools. I don't understand a lot about backends. It seems like every project I look at uses a different backend! I just used hatch because it did the conversion for me. I'll make the change to setuptools now. Thanks for looking at this. |
7f42022
to
c968dbe
Compare
Thanks for looking into int!
Exactly. Which is why I'd prefer to have the same backend here and in
So |
Well, |
b96565a
to
91d87b4
Compare
Needs a rebase now that 1.11 is out. |
91d87b4
to
c15bdca
Compare
Done. |
24fd987
to
1a17fc2
Compare
I wish I knew how to set up uv for CI, but it might be worth doing instead of regular pip. I'm also not sure how to get uv to work with this project because cupy won't build on my system (unless I install more things?) |
repository = "https://github.com/data-apis/array-api-compat/" | ||
|
||
[tool.setuptools.dynamic] | ||
version = {attr = "array_api_compat.__version__"} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note to self: need to make sure this keeps working from both a regular commit and a git tag for a release:
- a "regular" way:
python -m bulid
generates a version with a dynamic tag - from a git tag / in a release workflow: the version is from
__init__.py
, as set manually
Re: Making these new tools work is cool of course, and I'm mildly curious if you can make headway in that space. I will however have to make sure my regular ways keep working. For instance, I regularly need to mix and match editable installs of branches of |
Oh, no worries, please just keep doing whatever's easiest. I just don't know Pixi yet. |
6bfa429
to
6fbb863
Compare
pyproject.toml
Outdated
license = {file = "LICENSE"} | ||
authors = [{name = "Consortium for Python Data API Standards"}] | ||
classifiers = [ | ||
"License :: OSI Approved :: MIT License", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I had to upper cap setuptools both here and in array-api-strict
: newer versions complained about this way of specifying the license being not SPDX-compliant (whatever that is).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You mean you had to upper cap it just now, or before? I was getting errors too when I had both the license text and the license file. Anyway, I'm okay with the upper cap if you are.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mean earlier today (ok, yesterday, March 20), both here (setup.py) and in array-api-compat (pyproject.toml). The upper cap is a band-aid, so I was hoping you know about this SPDX thing. If not, then not, we'll upper cap for the time being.
And BTW, I'm planning to take a closer look at this PR, just not this week already.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
And BTW, I'm planning to take a closer look at this PR, just not this week already.
No rush, and thank you!
I was hoping you know about this SPDX thing.
I'll look into it. Do you know which command gave you the error? I use uv pip
now, so I didn't see any error. (It did give me an error when I had both the license text and file though.)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you know which command gave you the error?
This was on CI, so $ python -m build
, I'd think. Not sure if this matters, as long as setuptools is uber-recent
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perfect, thanks! Should be fixed now. If you want to support a particular version of MIT (or versions) of MIT, please let me know. The spec is here.
8ec4eef
to
4f652f7
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Trying the usual testing workflow:
$ pip uninstall array_api_compat
$ pip install -e .
$ cd ../array-api-tests
$ ARRAY_API_TESTS_MODULE=array_api_compat.numpy pytest array_api_tests/ -v
ImportError while loading conftest '/home/br/repos/array-api-tests/conftest.py'.
conftest.py:11: in <module>
from array_api_tests import _array_module as xp
array_api_tests/__init__.py:36: in <module>
xp = import_module(xp_name)
../array-api-compat/array_api_compat/numpy/__init__.py:7: in <module>
from ._aliases import * # noqa: F403
../array-api-compat/array_api_compat/numpy/_aliases.py:5: in <module>
from .._internal import get_xp
E ModuleNotFoundError: No module named 'array_api_compat._internal'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A second problem:
$ pip uninstall array_api_compat
$ python -m build .
$ cd dist
$ ll
# ...
-rw-rw-r-- 1 br br 52084 мар 23 10:17 array_api_compat-1.12.dev0-py3-none-any.whl
-rw-rw-r-- 1 br br 95333 мар 23 10:17 array_api_compat-1.12.dev0.tar.gz
$
$ pip install array_api_compat-1.12.dev0-py3-none-any.whl
$ ipython
Python 3.9.19 | packaged by conda-forge | (main, Mar 20 2024, 12:50:21)
Type 'copyright', 'credits' or 'license' for more information
IPython 8.18.1 -- An enhanced Interactive Python. Type '?' for help.
In [1]: import array_api_compat
In [2]: array_api_compat.__version__
---------------------------------------------------------------------------
AttributeError Traceback (most recent call last)
Cell In[2], line 1
----> 1 array_api_compat.__version__
AttributeError: module 'array_api_compat' has no attribute '__version__'
Hmm, I'm not sure what exactly is wrong because it works fine for me. I use |
Second one works fine for me as written:
|
My guess is there my be something wrong with your venv? Maybe delete .venv (or wherever you're storing it) and create a new one? |
Ok, here's a fresh env:
|
Can you import anything else from |
No, the install is broken:
|
Thank you. Would you mind testing the version I just pushed to see if it works? |
Thanks! This works now. |
Great! Thank you very much for your patience with this! My mistake was that I had [tool.setuptools.packages.find]
include = ["array_api_compat.*"] (extra period) instead of [tool.setuptools.packages.find]
include = ["array_api_compat*"] Also, I wasn't reproducing it properly because my venv was messed (not sure how). |
Ouch. This stuff is fiddly indeed :-(. Could you resolve the conflict please? It is otherwise ready, I tested a bit locally and it all seems to work. |
Rebased, and verified that |
Okay, the CI failures are known and have fixes in the pipeline (gh-286); local testing does now show new problems, so let's land this. Thank you @NeilGirdhar for your patience and for your persistence! |
Thank you! |
No description provided.