René's URL Explorer Experiment


Title: Trying to import latest version of FEAST is failing · Issue #3538 · feast-dev/feast · GitHub

Open Graph Title: Trying to import latest version of FEAST is failing · Issue #3538 · feast-dev/feast

X Title: Trying to import latest version of FEAST is failing · Issue #3538 · feast-dev/feast

Description: Expected Behavior After pip installing the feast package, I expect to be able to import feast in the next cell in order to develop with the FEAST python sdk Current Behavior Right now it throws this error: ValueError: tuple.index(x): x n...

Open Graph Description: Expected Behavior After pip installing the feast package, I expect to be able to import feast in the next cell in order to develop with the FEAST python sdk Current Behavior Right now it throws thi...

X Description: Expected Behavior After pip installing the feast package, I expect to be able to import feast in the next cell in order to develop with the FEAST python sdk Current Behavior Right now it throws thi...

Opengraph URL: https://github.com/feast-dev/feast/issues/3538

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Trying to import latest version of FEAST is failing","articleBody":"## Expected Behavior \r\nAfter pip installing the feast package, I expect to be able to `import feast` in the next cell in order to develop with the FEAST python sdk\r\n\r\n## Current Behavior\r\nRight now it throws this error: `ValueError: tuple.index(x): x not in tuple`\r\n\r\n\r\nWith this stack trace:\r\n```\r\n----\u003e 1 import feast\r\n\r\nFile ~/.pyenv/versions/3.8.13/envs/sandbox-py38/lib/python3.8/site-packages/feast/__init__.py:7\r\n      4 except ModuleNotFoundError:\r\n      5     from importlib_metadata import PackageNotFoundError, version as _version  # type: ignore\r\n----\u003e 7 from feast.infra.offline_stores.bigquery_source import BigQuerySource\r\n      8 from feast.infra.offline_stores.contrib.athena_offline_store.athena_source import (\r\n      9     AthenaSource,\r\n     10 )\r\n     11 from feast.infra.offline_stores.file_source import FileSource\r\n\r\nFile ~/.pyenv/versions/3.8.13/envs/sandbox-py38/lib/python3.8/site-packages/feast/infra/offline_stores/bigquery_source.py:8\r\n      6 from feast.data_source import DataSource\r\n      7 from feast.errors import DataSourceNoNameException, DataSourceNotFoundException\r\n----\u003e 8 from feast.feature_logging import LoggingDestination\r\n      9 from feast.protos.feast.core.DataSource_pb2 import DataSource as DataSourceProto\r\n     10 from feast.protos.feast.core.FeatureService_pb2 import (\r\n     11     LoggingConfig as LoggingConfigProto,\r\n     12 )\r\n\r\nFile ~/.pyenv/versions/3.8.13/envs/sandbox-py38/lib/python3.8/site-packages/feast/feature_logging.py:14\r\n      8 from feast.embedded_go.type_map import FEAST_TYPE_TO_ARROW_TYPE, PA_TIMESTAMP_TYPE\r\n      9 from feast.errors import (\r\n     10     FeastObjectNotFoundException,\r\n     11     FeatureViewNotFoundException,\r\n     12     OnDemandFeatureViewNotFoundException,\r\n     13 )\r\n---\u003e 14 from feast.feature_view import DUMMY_ENTITY_ID\r\n     15 from feast.protos.feast.core.FeatureService_pb2 import (\r\n     16     LoggingConfig as LoggingConfigProto,\r\n     17 )\r\n     19 if TYPE_CHECKING:\r\n\r\nFile ~/.pyenv/versions/3.8.13/envs/sandbox-py38/lib/python3.8/site-packages/feast/feature_view.py:22\r\n     19 from google.protobuf.duration_pb2 import Duration\r\n     20 from typeguard import typechecked\r\n---\u003e 22 from feast import utils\r\n     23 from feast.base_feature_view import BaseFeatureView\r\n     24 from feast.data_source import DataSource, KafkaSource, KinesisSource, PushSource\r\n\r\nFile ~/.pyenv/versions/3.8.13/envs/sandbox-py38/lib/python3.8/site-packages/feast/utils.py:15\r\n     12 from pytz import utc\r\n     14 from feast.constants import FEAST_FS_YAML_FILE_PATH_ENV_NAME\r\n---\u003e 15 from feast.entity import Entity\r\n     16 from feast.protos.feast.types.EntityKey_pb2 import EntityKey as EntityKeyProto\r\n     17 from feast.protos.feast.types.Value_pb2 import Value as ValueProto\r\n\r\nFile ~/.pyenv/versions/3.8.13/envs/sandbox-py38/lib/python3.8/site-packages/feast/entity.py:28\r\n     23 from feast.usage import log_exceptions\r\n     24 from feast.value_type import ValueType\r\n     27 @typechecked\r\n---\u003e 28 class Entity:\r\n     29     \"\"\"\r\n     30     An entity defines a collection of entities for which features can be defined. An\r\n     31     entity can also contain associated metadata.\r\n   (...)\r\n     43         last_updated_timestamp: The time when the entity was last updated.\r\n     44     \"\"\"\r\n     46     name: str\r\n\r\nFile ~/.pyenv/versions/3.8.13/envs/sandbox-py38/lib/python3.8/site-packages/typeguard/_decorators.py:142, in typechecked(target)\r\n    140 for key, attr in target.__dict__.items():\r\n    141     if is_method_of(attr, target):\r\n--\u003e 142         retval = instrument(attr)\r\n    143         if isfunction(retval):\r\n    144             setattr(target, key, retval)\r\n\r\nFile ~/.pyenv/versions/3.8.13/envs/sandbox-py38/lib/python3.8/site-packages/typeguard/_decorators.py:88, in instrument(f)\r\n     85 elif f.__closure__ is not None:\r\n     86     # Existing closure needs modifications\r\n     87     cell = make_cell()\r\n---\u003e 88     index = new_code.co_freevars.index(f.__name__)\r\n     89     closure = f.__closure__[:index] + (cell,) + f.__closure__[index:]\r\n     90 else:\r\n     91     # Make a brand new closure\r\n\r\nValueError: tuple.index(x): x not in tuple\r\n\r\n```\r\n\r\n## Steps to reproduce\r\n- pip install feast \r\n- import feast\r\n\r\n### Specifications\r\n\r\n- FEAST Version: 0.29.0\r\n- Platform: MacOSx (12.6)\r\n- Subsystem:\r\n- Python version:  3.8.13\r\n\r\n## Possible Solution\r\n\r\n- Pinning `typeguard` to a specific version?\r\n","author":{"url":"https://github.com/malavika-menon","@type":"Person","name":"malavika-menon"},"datePublished":"2023-03-15T15:04:02.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":4},"url":"https://github.com/3538/feast/issues/3538"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:932feba6-ade7-c0a9-92d0-5b72378c7b86
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idDA7E:D6BAD:5354962:70D5E90:697363C2
html-safe-nonced6e18602f18dad3cadd7917aacdaf6a32c84ccf20c9b6b3e930331408f1da622
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJEQTdFOkQ2QkFEOjUzNTQ5NjI6NzBENUU5MDo2OTczNjNDMiIsInZpc2l0b3JfaWQiOiIxMjY4ODIzMjQzMjYzMDA5NzMwIiwicmVnaW9uX2VkZ2UiOiJpYWQiLCJyZWdpb25fcmVuZGVyIjoiaWFkIn0=
visitor-hmac59218d3f3f484646b37e2541717b4e081ba69ea2c4ec38ced0db0062859e97b3
hovercard-subject-tagissue:1625703682
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/feast-dev/feast/3538/issue_layout
twitter:imagehttps://opengraph.githubassets.com/f57b95398d2190c24d31812995ebf0b67316a7a09a201fe89778d983f14e20e0/feast-dev/feast/issues/3538
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/f57b95398d2190c24d31812995ebf0b67316a7a09a201fe89778d983f14e20e0/feast-dev/feast/issues/3538
og:image:altExpected Behavior After pip installing the feast package, I expect to be able to import feast in the next cell in order to develop with the FEAST python sdk Current Behavior Right now it throws thi...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamemalavika-menon
hostnamegithub.com
expected-hostnamegithub.com
None4cf879a11b0a28a85543899a36aaee9ec9ca2fb7bedad86c0da5731193c95f01
turbo-cache-controlno-preview
go-importgithub.com/feast-dev/feast git https://github.com/feast-dev/feast.git
octolytics-dimension-user_id57027613
octolytics-dimension-user_loginfeast-dev
octolytics-dimension-repository_id161133770
octolytics-dimension-repository_nwofeast-dev/feast
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id161133770
octolytics-dimension-repository_network_root_nwofeast-dev/feast
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasefe8be790582ef7a55477ce1918ac0ed16b106d31
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/feast-dev/feast/issues/3538#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeast-dev%2Ffeast%2Fissues%2F3538
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Ffeast-dev%2Ffeast%2Fissues%2F3538
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=feast-dev%2Ffeast
Reloadhttps://github.com/feast-dev/feast/issues/3538
Reloadhttps://github.com/feast-dev/feast/issues/3538
Reloadhttps://github.com/feast-dev/feast/issues/3538
feast-dev https://github.com/feast-dev
feasthttps://github.com/feast-dev/feast
Notifications https://github.com/login?return_to=%2Ffeast-dev%2Ffeast
Fork 1.2k https://github.com/login?return_to=%2Ffeast-dev%2Ffeast
Star 6.6k https://github.com/login?return_to=%2Ffeast-dev%2Ffeast
Code https://github.com/feast-dev/feast
Issues 182 https://github.com/feast-dev/feast/issues
Pull requests 66 https://github.com/feast-dev/feast/pulls
Discussions https://github.com/feast-dev/feast/discussions
Actions https://github.com/feast-dev/feast/actions
Security 0 https://github.com/feast-dev/feast/security
Insights https://github.com/feast-dev/feast/pulse
Code https://github.com/feast-dev/feast
Issues https://github.com/feast-dev/feast/issues
Pull requests https://github.com/feast-dev/feast/pulls
Discussions https://github.com/feast-dev/feast/discussions
Actions https://github.com/feast-dev/feast/actions
Security https://github.com/feast-dev/feast/security
Insights https://github.com/feast-dev/feast/pulse
New issuehttps://github.com/login?return_to=https://github.com/feast-dev/feast/issues/3538
New issuehttps://github.com/login?return_to=https://github.com/feast-dev/feast/issues/3538
Trying to import latest version of FEAST is failinghttps://github.com/feast-dev/feast/issues/3538#top
kind/bughttps://github.com/feast-dev/feast/issues?q=state%3Aopen%20label%3A%22kind%2Fbug%22
priority/p2https://github.com/feast-dev/feast/issues?q=state%3Aopen%20label%3A%22priority%2Fp2%22
https://github.com/malavika-menon
https://github.com/malavika-menon
malavika-menonhttps://github.com/malavika-menon
on Mar 15, 2023https://github.com/feast-dev/feast/issues/3538#issue-1625703682
kind/bughttps://github.com/feast-dev/feast/issues?q=state%3Aopen%20label%3A%22kind%2Fbug%22
priority/p2https://github.com/feast-dev/feast/issues?q=state%3Aopen%20label%3A%22priority%2Fp2%22
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.