├── .github ├── config.yml └── workflows │ ├── tx-pull.yml │ └── tx-push.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── .tx └── config ├── 2022-02_sprint ├── banner.png ├── banner.py ├── index.md ├── organizers │ └── index.md └── schedule.part.md ├── 2022-07_sprint ├── index.md ├── schedule.md ├── schedule_table.part.md └── sprint_parties │ ├── community_partners.md │ ├── contributors.md │ ├── index.md │ ├── media_kit.md │ ├── organizers.md │ └── sponsors.md ├── 2023-03_sprint ├── index.md └── sprint_parties │ ├── community_partners.md │ ├── contributors.md │ ├── du_pymc.md │ ├── index.md │ ├── media_kit.md │ ├── organizers.md │ ├── sponsors.md │ └── translators.md ├── 404.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── _static ├── banner_2022_02 │ ├── banner.png │ └── share_banner.png ├── banner_2022_07 │ ├── 2022_07_banner_1280×640px.png │ └── 2022_07_banner_1600x900px.png ├── banner_2023_03 │ ├── 2023_03_banner_1280_640px.png │ ├── 2023_03_banner_1600_900px.png │ └── cps_2023_03.png ├── community_partners │ ├── logo_pyladies_berlin.png │ ├── metadocencia.png │ ├── metadocencia_logo_vert.png │ ├── nyc-pydata-logo.png │ ├── nyc_pyladies.jpg │ ├── pyladies_colombia.png │ ├── pyladies_ghana.png │ ├── pyladies_kampala.png │ ├── pyladies_london.png │ ├── pyladies_paris.png │ ├── pyladies_tunis.png │ ├── python_ghana.png │ ├── pythonchile.png │ ├── wbds_latin_america.png │ └── wia.png ├── contributors │ ├── blank_man.jpg │ ├── blank_person.jpg │ └── blank_woman.jpg ├── contributors_2022_07 │ ├── Alma_Lindborg.jpg │ ├── Andrianina_Raharijao.jpg │ ├── Arun_Ravi.jpg │ ├── Dustin_Burt.jpeg │ ├── Igor_Kuvychko.png │ ├── Jon_Labahn.jpg │ ├── Jonathan_Lindbloom.jpg │ ├── Lucy_Jimenez.jpeg │ ├── Margaret_Okore.JPG │ ├── Nthaby_Khabele.jpg │ ├── Prince_Asiedu.jpg │ ├── Rohan_Sharma.webp │ ├── Rowan_S.jpg │ ├── Vikas_Vishwakarma.jpg │ ├── carlo_dll.jpeg │ └── daniel_saunders.jpg ├── contributors_2023_03 │ ├── 1C8D830D-950E-4311-B811-09E88D5C66BE.jpeg │ ├── adrien_square_small.jpeg │ ├── alberto.jpeg │ └── cf2.jpg ├── custom.css ├── images │ ├── 2022_07_timezones.png │ ├── du-pymc-logo.png │ ├── du.png │ └── favicon.ico ├── people │ ├── alex_a.jpeg │ ├── beryl.JPG │ ├── cf.jpg │ ├── chris_f.jpeg │ ├── cluhmann.jpg │ ├── cristina.jpg │ ├── danh_phan.jpeg │ ├── fernando_i.jpeg │ ├── meenal.jpg │ ├── michael_o.jpeg │ ├── oriol.jpg │ ├── ravin_kumar.jpeg │ ├── reshama.jpg │ ├── sandra_meneses.jpeg │ ├── sandy.jpg │ ├── sayam_kumar.jpeg │ └── thomas_wiecki.jpeg ├── sponsors │ ├── 4-pymc-labs-transp-black.png │ ├── czi-logo.jpg │ └── google_color.png └── switcher.json ├── _templates ├── cheatsheet.html ├── coc_notice.html └── layout.html ├── about ├── contributing_to_documentation │ ├── docs_presentation.md │ ├── imposter.jpg │ ├── index.md │ ├── new.png │ └── old.png ├── contributing_to_pymc │ ├── contributing_to_pymc_slides.pdf │ └── index.md ├── example_pr │ └── index.md ├── index.md ├── intro_to_array_operations │ ├── data_types.png │ ├── index.md │ └── notebook.ipynb ├── intuitive_modeling │ └── index.md └── probabilistic_programming_with_pymc │ ├── index.md │ ├── notebook.ipynb │ └── transcript.md ├── conf.py ├── contributing ├── donate.md ├── environment_setup_gitpod.md ├── images │ ├── atom_numpydoc.png │ ├── fork_button.png │ ├── pr_screen.png │ └── source_button.png ├── index.md ├── issues_list.md ├── language-translations.md ├── prep-work.md ├── tutorials │ ├── docstring_tutorial.md │ ├── environment_setup.md │ ├── pr_tutorial.md │ └── sample_docstring.md └── videos.md ├── flag_old_files.py ├── index.md ├── locales ├── es │ └── LC_MESSAGES │ │ ├── 2022-02_sprint │ │ ├── index.po │ │ └── organizers │ │ │ └── index.po │ │ ├── 2022-07_sprint │ │ ├── index.po │ │ ├── schedule.po │ │ └── sprint_parties │ │ │ ├── community_partners.po │ │ │ ├── contributors.po │ │ │ ├── index.po │ │ │ ├── media_kit.po │ │ │ ├── organizers.po │ │ │ └── sponsors.po │ │ ├── 2023-03_sprint │ │ ├── index.po │ │ └── sprint_parties │ │ │ ├── community_partners.po │ │ │ ├── contributors.po │ │ │ ├── du_pymc.po │ │ │ ├── index.po │ │ │ ├── media_kit.po │ │ │ ├── organizers.po │ │ │ ├── sponsors.po │ │ │ └── translators.po │ │ ├── 404.po │ │ ├── CODE_OF_CONDUCT.po │ │ ├── about │ │ ├── contributing_to_documentation │ │ │ ├── docs_presentation.po │ │ │ └── index.po │ │ ├── contributing_to_pymc │ │ │ └── index.po │ │ ├── example_pr │ │ │ └── index.po │ │ ├── index.po │ │ ├── intro_to_array_operations │ │ │ ├── index.po │ │ │ └── notebook.po │ │ ├── intuitive_modeling │ │ │ └── index.po │ │ └── probabilistic_programming_with_pymc │ │ │ ├── index.po │ │ │ ├── notebook.po │ │ │ └── transcript.po │ │ ├── contributing │ │ ├── donate.po │ │ ├── environment_setup_gitpod.po │ │ ├── index.po │ │ ├── issues_list.po │ │ ├── language-translations.po │ │ ├── prep-work.po │ │ ├── tutorials │ │ │ ├── docstring_tutorial.po │ │ │ ├── environment_setup.po │ │ │ ├── pr_tutorial.po │ │ │ └── sample_docstring.po │ │ └── videos.po │ │ ├── index.po │ │ ├── sphinx.po │ │ ├── sprint │ │ ├── faq.po │ │ ├── index.po │ │ ├── prep-work-archive.po │ │ ├── prep-work.po │ │ ├── resources.po │ │ ├── sprint-cheatsheet.po │ │ ├── sprint-guide.po │ │ └── tutorials │ │ │ ├── docstring_tutorial.po │ │ │ ├── environment_setup.po │ │ │ ├── pr_tutorial.po │ │ │ └── sample_docstring.po │ │ └── sprint_events.po └── pt │ └── LC_MESSAGES │ ├── 2022-02_sprint │ ├── index.po │ └── organizers │ │ └── index.po │ ├── 2022-07_sprint │ ├── index.po │ ├── schedule.po │ └── sprint_parties │ │ ├── community_partners.po │ │ ├── contributors.po │ │ ├── index.po │ │ ├── media_kit.po │ │ ├── organizers.po │ │ └── sponsors.po │ ├── 2023-03_sprint │ ├── index.po │ └── sprint_parties │ │ ├── community_partners.po │ │ ├── contributors.po │ │ ├── du_pymc.po │ │ ├── index.po │ │ ├── media_kit.po │ │ ├── organizers.po │ │ ├── sponsors.po │ │ └── translators.po │ ├── 404.po │ ├── CODE_OF_CONDUCT.po │ ├── about │ ├── contributing_to_documentation │ │ ├── docs_presentation.po │ │ └── index.po │ ├── contributing_to_pymc │ │ └── index.po │ ├── example_pr │ │ └── index.po │ ├── index.po │ ├── intro_to_array_operations │ │ ├── index.po │ │ └── notebook.po │ ├── intuitive_modeling │ │ └── index.po │ └── probabilistic_programming_with_pymc │ │ ├── index.po │ │ ├── notebook.po │ │ └── transcript.po │ ├── contributing │ ├── donate.po │ ├── environment_setup_gitpod.po │ ├── index.po │ ├── issues_list.po │ ├── language-translations.po │ ├── prep-work.po │ ├── tutorials │ │ ├── docstring_tutorial.po │ │ ├── environment_setup.po │ │ ├── pr_tutorial.po │ │ └── sample_docstring.po │ └── videos.po │ ├── index.po │ ├── sphinx.po │ ├── sprint │ ├── faq.po │ ├── index.po │ ├── prep-work-archive.po │ ├── prep-work.po │ ├── resources.po │ ├── sprint-cheatsheet.po │ ├── sprint-guide.po │ └── tutorials │ │ ├── docstring_tutorial.po │ │ ├── environment_setup.po │ │ ├── pr_tutorial.po │ │ └── sample_docstring.po │ └── sprint_events.po ├── requirements-docs.txt ├── sprint ├── faq.md ├── index.md ├── prep-work-archive.md ├── resources.md ├── sprint-cheatsheet.md └── sprint-guide.md ├── sprint_events.md └── write_tx_config.py /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.github/workflows/tx-pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/.github/workflows/tx-pull.yml -------------------------------------------------------------------------------- /.github/workflows/tx-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/.github/workflows/tx-push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /.tx/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/.tx/config -------------------------------------------------------------------------------- /2022-02_sprint/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-02_sprint/banner.png -------------------------------------------------------------------------------- /2022-02_sprint/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-02_sprint/banner.py -------------------------------------------------------------------------------- /2022-02_sprint/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-02_sprint/index.md -------------------------------------------------------------------------------- /2022-02_sprint/organizers/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-02_sprint/organizers/index.md -------------------------------------------------------------------------------- /2022-02_sprint/schedule.part.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-02_sprint/schedule.part.md -------------------------------------------------------------------------------- /2022-07_sprint/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/index.md -------------------------------------------------------------------------------- /2022-07_sprint/schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/schedule.md -------------------------------------------------------------------------------- /2022-07_sprint/schedule_table.part.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/schedule_table.part.md -------------------------------------------------------------------------------- /2022-07_sprint/sprint_parties/community_partners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/sprint_parties/community_partners.md -------------------------------------------------------------------------------- /2022-07_sprint/sprint_parties/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/sprint_parties/contributors.md -------------------------------------------------------------------------------- /2022-07_sprint/sprint_parties/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/sprint_parties/index.md -------------------------------------------------------------------------------- /2022-07_sprint/sprint_parties/media_kit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/sprint_parties/media_kit.md -------------------------------------------------------------------------------- /2022-07_sprint/sprint_parties/organizers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/sprint_parties/organizers.md -------------------------------------------------------------------------------- /2022-07_sprint/sprint_parties/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2022-07_sprint/sprint_parties/sponsors.md -------------------------------------------------------------------------------- /2023-03_sprint/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/index.md -------------------------------------------------------------------------------- /2023-03_sprint/sprint_parties/community_partners.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/sprint_parties/community_partners.md -------------------------------------------------------------------------------- /2023-03_sprint/sprint_parties/contributors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/sprint_parties/contributors.md -------------------------------------------------------------------------------- /2023-03_sprint/sprint_parties/du_pymc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/sprint_parties/du_pymc.md -------------------------------------------------------------------------------- /2023-03_sprint/sprint_parties/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/sprint_parties/index.md -------------------------------------------------------------------------------- /2023-03_sprint/sprint_parties/media_kit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/sprint_parties/media_kit.md -------------------------------------------------------------------------------- /2023-03_sprint/sprint_parties/organizers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/sprint_parties/organizers.md -------------------------------------------------------------------------------- /2023-03_sprint/sprint_parties/sponsors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/sprint_parties/sponsors.md -------------------------------------------------------------------------------- /2023-03_sprint/sprint_parties/translators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/2023-03_sprint/sprint_parties/translators.md -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/404.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/README.md -------------------------------------------------------------------------------- /_static/banner_2022_02/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/banner_2022_02/banner.png -------------------------------------------------------------------------------- /_static/banner_2022_02/share_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/banner_2022_02/share_banner.png -------------------------------------------------------------------------------- /_static/banner_2022_07/2022_07_banner_1280×640px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/banner_2022_07/2022_07_banner_1280×640px.png -------------------------------------------------------------------------------- /_static/banner_2022_07/2022_07_banner_1600x900px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/banner_2022_07/2022_07_banner_1600x900px.png -------------------------------------------------------------------------------- /_static/banner_2023_03/2023_03_banner_1280_640px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/banner_2023_03/2023_03_banner_1280_640px.png -------------------------------------------------------------------------------- /_static/banner_2023_03/2023_03_banner_1600_900px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/banner_2023_03/2023_03_banner_1600_900px.png -------------------------------------------------------------------------------- /_static/banner_2023_03/cps_2023_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/banner_2023_03/cps_2023_03.png -------------------------------------------------------------------------------- /_static/community_partners/logo_pyladies_berlin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/logo_pyladies_berlin.png -------------------------------------------------------------------------------- /_static/community_partners/metadocencia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/metadocencia.png -------------------------------------------------------------------------------- /_static/community_partners/metadocencia_logo_vert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/metadocencia_logo_vert.png -------------------------------------------------------------------------------- /_static/community_partners/nyc-pydata-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/nyc-pydata-logo.png -------------------------------------------------------------------------------- /_static/community_partners/nyc_pyladies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/nyc_pyladies.jpg -------------------------------------------------------------------------------- /_static/community_partners/pyladies_colombia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/pyladies_colombia.png -------------------------------------------------------------------------------- /_static/community_partners/pyladies_ghana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/pyladies_ghana.png -------------------------------------------------------------------------------- /_static/community_partners/pyladies_kampala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/pyladies_kampala.png -------------------------------------------------------------------------------- /_static/community_partners/pyladies_london.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/pyladies_london.png -------------------------------------------------------------------------------- /_static/community_partners/pyladies_paris.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/pyladies_paris.png -------------------------------------------------------------------------------- /_static/community_partners/pyladies_tunis.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/pyladies_tunis.png -------------------------------------------------------------------------------- /_static/community_partners/python_ghana.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/python_ghana.png -------------------------------------------------------------------------------- /_static/community_partners/pythonchile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/pythonchile.png -------------------------------------------------------------------------------- /_static/community_partners/wbds_latin_america.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/wbds_latin_america.png -------------------------------------------------------------------------------- /_static/community_partners/wia.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/community_partners/wia.png -------------------------------------------------------------------------------- /_static/contributors/blank_man.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors/blank_man.jpg -------------------------------------------------------------------------------- /_static/contributors/blank_person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors/blank_person.jpg -------------------------------------------------------------------------------- /_static/contributors/blank_woman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors/blank_woman.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Alma_Lindborg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Alma_Lindborg.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Andrianina_Raharijao.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Andrianina_Raharijao.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Arun_Ravi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Arun_Ravi.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Dustin_Burt.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Dustin_Burt.jpeg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Igor_Kuvychko.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Igor_Kuvychko.png -------------------------------------------------------------------------------- /_static/contributors_2022_07/Jon_Labahn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Jon_Labahn.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Jonathan_Lindbloom.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Jonathan_Lindbloom.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Lucy_Jimenez.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Lucy_Jimenez.jpeg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Margaret_Okore.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Margaret_Okore.JPG -------------------------------------------------------------------------------- /_static/contributors_2022_07/Nthaby_Khabele.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Nthaby_Khabele.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Prince_Asiedu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Prince_Asiedu.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Rohan_Sharma.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Rohan_Sharma.webp -------------------------------------------------------------------------------- /_static/contributors_2022_07/Rowan_S.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Rowan_S.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/Vikas_Vishwakarma.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/Vikas_Vishwakarma.jpg -------------------------------------------------------------------------------- /_static/contributors_2022_07/carlo_dll.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/carlo_dll.jpeg -------------------------------------------------------------------------------- /_static/contributors_2022_07/daniel_saunders.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2022_07/daniel_saunders.jpg -------------------------------------------------------------------------------- /_static/contributors_2023_03/1C8D830D-950E-4311-B811-09E88D5C66BE.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2023_03/1C8D830D-950E-4311-B811-09E88D5C66BE.jpeg -------------------------------------------------------------------------------- /_static/contributors_2023_03/adrien_square_small.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2023_03/adrien_square_small.jpeg -------------------------------------------------------------------------------- /_static/contributors_2023_03/alberto.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2023_03/alberto.jpeg -------------------------------------------------------------------------------- /_static/contributors_2023_03/cf2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/contributors_2023_03/cf2.jpg -------------------------------------------------------------------------------- /_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/custom.css -------------------------------------------------------------------------------- /_static/images/2022_07_timezones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/images/2022_07_timezones.png -------------------------------------------------------------------------------- /_static/images/du-pymc-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/images/du-pymc-logo.png -------------------------------------------------------------------------------- /_static/images/du.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/images/du.png -------------------------------------------------------------------------------- /_static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/images/favicon.ico -------------------------------------------------------------------------------- /_static/people/alex_a.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/alex_a.jpeg -------------------------------------------------------------------------------- /_static/people/beryl.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/beryl.JPG -------------------------------------------------------------------------------- /_static/people/cf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/cf.jpg -------------------------------------------------------------------------------- /_static/people/chris_f.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/chris_f.jpeg -------------------------------------------------------------------------------- /_static/people/cluhmann.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/cluhmann.jpg -------------------------------------------------------------------------------- /_static/people/cristina.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/cristina.jpg -------------------------------------------------------------------------------- /_static/people/danh_phan.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/danh_phan.jpeg -------------------------------------------------------------------------------- /_static/people/fernando_i.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/fernando_i.jpeg -------------------------------------------------------------------------------- /_static/people/meenal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/meenal.jpg -------------------------------------------------------------------------------- /_static/people/michael_o.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/michael_o.jpeg -------------------------------------------------------------------------------- /_static/people/oriol.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/oriol.jpg -------------------------------------------------------------------------------- /_static/people/ravin_kumar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/ravin_kumar.jpeg -------------------------------------------------------------------------------- /_static/people/reshama.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/reshama.jpg -------------------------------------------------------------------------------- /_static/people/sandra_meneses.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/sandra_meneses.jpeg -------------------------------------------------------------------------------- /_static/people/sandy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/sandy.jpg -------------------------------------------------------------------------------- /_static/people/sayam_kumar.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/sayam_kumar.jpeg -------------------------------------------------------------------------------- /_static/people/thomas_wiecki.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/people/thomas_wiecki.jpeg -------------------------------------------------------------------------------- /_static/sponsors/4-pymc-labs-transp-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/sponsors/4-pymc-labs-transp-black.png -------------------------------------------------------------------------------- /_static/sponsors/czi-logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/sponsors/czi-logo.jpg -------------------------------------------------------------------------------- /_static/sponsors/google_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/sponsors/google_color.png -------------------------------------------------------------------------------- /_static/switcher.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_static/switcher.json -------------------------------------------------------------------------------- /_templates/cheatsheet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_templates/cheatsheet.html -------------------------------------------------------------------------------- /_templates/coc_notice.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_templates/coc_notice.html -------------------------------------------------------------------------------- /_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/_templates/layout.html -------------------------------------------------------------------------------- /about/contributing_to_documentation/docs_presentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/contributing_to_documentation/docs_presentation.md -------------------------------------------------------------------------------- /about/contributing_to_documentation/imposter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/contributing_to_documentation/imposter.jpg -------------------------------------------------------------------------------- /about/contributing_to_documentation/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/contributing_to_documentation/index.md -------------------------------------------------------------------------------- /about/contributing_to_documentation/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/contributing_to_documentation/new.png -------------------------------------------------------------------------------- /about/contributing_to_documentation/old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/contributing_to_documentation/old.png -------------------------------------------------------------------------------- /about/contributing_to_pymc/contributing_to_pymc_slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/contributing_to_pymc/contributing_to_pymc_slides.pdf -------------------------------------------------------------------------------- /about/contributing_to_pymc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/contributing_to_pymc/index.md -------------------------------------------------------------------------------- /about/example_pr/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/example_pr/index.md -------------------------------------------------------------------------------- /about/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/index.md -------------------------------------------------------------------------------- /about/intro_to_array_operations/data_types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/intro_to_array_operations/data_types.png -------------------------------------------------------------------------------- /about/intro_to_array_operations/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/intro_to_array_operations/index.md -------------------------------------------------------------------------------- /about/intro_to_array_operations/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/intro_to_array_operations/notebook.ipynb -------------------------------------------------------------------------------- /about/intuitive_modeling/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/intuitive_modeling/index.md -------------------------------------------------------------------------------- /about/probabilistic_programming_with_pymc/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/probabilistic_programming_with_pymc/index.md -------------------------------------------------------------------------------- /about/probabilistic_programming_with_pymc/notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/probabilistic_programming_with_pymc/notebook.ipynb -------------------------------------------------------------------------------- /about/probabilistic_programming_with_pymc/transcript.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/about/probabilistic_programming_with_pymc/transcript.md -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/conf.py -------------------------------------------------------------------------------- /contributing/donate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/donate.md -------------------------------------------------------------------------------- /contributing/environment_setup_gitpod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/environment_setup_gitpod.md -------------------------------------------------------------------------------- /contributing/images/atom_numpydoc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/images/atom_numpydoc.png -------------------------------------------------------------------------------- /contributing/images/fork_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/images/fork_button.png -------------------------------------------------------------------------------- /contributing/images/pr_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/images/pr_screen.png -------------------------------------------------------------------------------- /contributing/images/source_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/images/source_button.png -------------------------------------------------------------------------------- /contributing/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/index.md -------------------------------------------------------------------------------- /contributing/issues_list.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/issues_list.md -------------------------------------------------------------------------------- /contributing/language-translations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/language-translations.md -------------------------------------------------------------------------------- /contributing/prep-work.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/prep-work.md -------------------------------------------------------------------------------- /contributing/tutorials/docstring_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/tutorials/docstring_tutorial.md -------------------------------------------------------------------------------- /contributing/tutorials/environment_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/tutorials/environment_setup.md -------------------------------------------------------------------------------- /contributing/tutorials/pr_tutorial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/tutorials/pr_tutorial.md -------------------------------------------------------------------------------- /contributing/tutorials/sample_docstring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/tutorials/sample_docstring.md -------------------------------------------------------------------------------- /contributing/videos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/contributing/videos.md -------------------------------------------------------------------------------- /flag_old_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/flag_old_files.py -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/index.md -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-02_sprint/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-02_sprint/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-02_sprint/organizers/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-02_sprint/organizers/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-07_sprint/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-07_sprint/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-07_sprint/schedule.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-07_sprint/schedule.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/community_partners.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/community_partners.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/contributors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/contributors.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/media_kit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/media_kit.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/organizers.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/organizers.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/sponsors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2022-07_sprint/sprint_parties/sponsors.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/community_partners.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/community_partners.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/contributors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/contributors.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/du_pymc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/du_pymc.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/media_kit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/media_kit.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/organizers.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/organizers.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/sponsors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/sponsors.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/translators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/2023-03_sprint/sprint_parties/translators.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/404.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/404.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/CODE_OF_CONDUCT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/CODE_OF_CONDUCT.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/contributing_to_documentation/docs_presentation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/contributing_to_documentation/docs_presentation.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/contributing_to_documentation/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/contributing_to_documentation/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/contributing_to_pymc/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/contributing_to_pymc/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/example_pr/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/example_pr/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/intro_to_array_operations/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/intro_to_array_operations/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/intro_to_array_operations/notebook.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/intro_to_array_operations/notebook.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/intuitive_modeling/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/intuitive_modeling/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/probabilistic_programming_with_pymc/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/probabilistic_programming_with_pymc/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/probabilistic_programming_with_pymc/notebook.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/probabilistic_programming_with_pymc/notebook.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/about/probabilistic_programming_with_pymc/transcript.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/about/probabilistic_programming_with_pymc/transcript.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/donate.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/donate.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/environment_setup_gitpod.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/environment_setup_gitpod.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/issues_list.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/issues_list.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/language-translations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/language-translations.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/prep-work.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/prep-work.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/tutorials/docstring_tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/tutorials/docstring_tutorial.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/tutorials/environment_setup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/tutorials/environment_setup.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/tutorials/pr_tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/tutorials/pr_tutorial.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/tutorials/sample_docstring.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/tutorials/sample_docstring.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/contributing/videos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/contributing/videos.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/faq.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/index.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/prep-work-archive.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/prep-work-archive.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/prep-work.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/prep-work.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/resources.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/resources.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/sprint-cheatsheet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/sprint-cheatsheet.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/sprint-guide.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/sprint-guide.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/tutorials/docstring_tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/tutorials/docstring_tutorial.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/tutorials/environment_setup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/tutorials/environment_setup.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/tutorials/pr_tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/tutorials/pr_tutorial.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint/tutorials/sample_docstring.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint/tutorials/sample_docstring.po -------------------------------------------------------------------------------- /locales/es/LC_MESSAGES/sprint_events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/es/LC_MESSAGES/sprint_events.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-02_sprint/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-02_sprint/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-02_sprint/organizers/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-02_sprint/organizers/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-07_sprint/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-07_sprint/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-07_sprint/schedule.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-07_sprint/schedule.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/community_partners.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/community_partners.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/contributors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/contributors.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/media_kit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/media_kit.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/organizers.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/organizers.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/sponsors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2022-07_sprint/sprint_parties/sponsors.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/community_partners.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/community_partners.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/contributors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/contributors.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/du_pymc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/du_pymc.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/media_kit.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/media_kit.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/organizers.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/organizers.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/sponsors.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/sponsors.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/translators.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/2023-03_sprint/sprint_parties/translators.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/404.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/404.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/CODE_OF_CONDUCT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/CODE_OF_CONDUCT.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/contributing_to_documentation/docs_presentation.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/contributing_to_documentation/docs_presentation.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/contributing_to_documentation/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/contributing_to_documentation/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/contributing_to_pymc/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/contributing_to_pymc/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/example_pr/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/example_pr/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/intro_to_array_operations/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/intro_to_array_operations/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/intro_to_array_operations/notebook.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/intro_to_array_operations/notebook.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/intuitive_modeling/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/intuitive_modeling/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/probabilistic_programming_with_pymc/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/probabilistic_programming_with_pymc/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/probabilistic_programming_with_pymc/notebook.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/probabilistic_programming_with_pymc/notebook.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/about/probabilistic_programming_with_pymc/transcript.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/about/probabilistic_programming_with_pymc/transcript.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/donate.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/donate.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/environment_setup_gitpod.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/environment_setup_gitpod.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/issues_list.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/issues_list.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/language-translations.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/language-translations.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/prep-work.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/prep-work.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/tutorials/docstring_tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/tutorials/docstring_tutorial.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/tutorials/environment_setup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/tutorials/environment_setup.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/tutorials/pr_tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/tutorials/pr_tutorial.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/tutorials/sample_docstring.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/tutorials/sample_docstring.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/contributing/videos.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/contributing/videos.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sphinx.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sphinx.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/faq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/faq.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/index.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/prep-work-archive.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/prep-work-archive.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/prep-work.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/prep-work.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/resources.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/resources.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/sprint-cheatsheet.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/sprint-cheatsheet.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/sprint-guide.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/sprint-guide.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/tutorials/docstring_tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/tutorials/docstring_tutorial.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/tutorials/environment_setup.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/tutorials/environment_setup.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/tutorials/pr_tutorial.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/tutorials/pr_tutorial.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint/tutorials/sample_docstring.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint/tutorials/sample_docstring.po -------------------------------------------------------------------------------- /locales/pt/LC_MESSAGES/sprint_events.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/locales/pt/LC_MESSAGES/sprint_events.po -------------------------------------------------------------------------------- /requirements-docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/requirements-docs.txt -------------------------------------------------------------------------------- /sprint/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/sprint/faq.md -------------------------------------------------------------------------------- /sprint/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/sprint/index.md -------------------------------------------------------------------------------- /sprint/prep-work-archive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/sprint/prep-work-archive.md -------------------------------------------------------------------------------- /sprint/resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/sprint/resources.md -------------------------------------------------------------------------------- /sprint/sprint-cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/sprint/sprint-cheatsheet.md -------------------------------------------------------------------------------- /sprint/sprint-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/sprint/sprint-guide.md -------------------------------------------------------------------------------- /sprint_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/sprint_events.md -------------------------------------------------------------------------------- /write_tx_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pymc-devs/pymc-data-umbrella/HEAD/write_tx_config.py --------------------------------------------------------------------------------