ibridges-servers-uu 0.3.0__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (16) hide show
  1. {ibridges_servers_uu-0.3.0/ibridges_servers_uu.egg-info → ibridges_servers_uu-0.3.1}/PKG-INFO +1 -1
  2. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1/ibridges_servers_uu.egg-info}/PKG-INFO +1 -1
  3. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/ibridgescontrib/uutemplate/templates.py +1 -2
  4. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/.github/workflows/python-package.yml +0 -0
  5. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/.github/workflows/python-publish.yml +0 -0
  6. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/.gitignore +0 -0
  7. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/LICENSE +0 -0
  8. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/README.md +0 -0
  9. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/ibridges_servers_uu.egg-info/SOURCES.txt +0 -0
  10. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/ibridges_servers_uu.egg-info/dependency_links.txt +0 -0
  11. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/ibridges_servers_uu.egg-info/entry_points.txt +0 -0
  12. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/ibridges_servers_uu.egg-info/requires.txt +0 -0
  13. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/ibridges_servers_uu.egg-info/top_level.txt +0 -0
  14. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/ibridgescontrib/uutemplate/__init__.py +0 -0
  15. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/pyproject.toml +0 -0
  16. {ibridges_servers_uu-0.3.0 → ibridges_servers_uu-0.3.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ibridges-servers-uu
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: iRODS environments for connecting to Utrecht University YoDa servers
5
5
  Author-email: Raoul Schram <r.d.schram@uu.nl>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ibridges-servers-uu
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: iRODS environments for connecting to Utrecht University YoDa servers
5
5
  Author-email: Raoul Schram <r.d.schram@uu.nl>
6
6
  License: MIT
@@ -65,7 +65,6 @@ class IBridgesUUTemplates:
65
65
  host = template_name[3:]+".data" if template_name != "uu-surf" else "data.yoda"
66
66
  zone = _SERVERS_TO_ZONE[template_name]
67
67
  template = Template(_BASE_TEMPLATE)
68
- pam_scheme = "pam_password" if template_name != "uu-surf" else "pam"
69
68
  resc = "irodsResc2" if template_name in ["uu-dgk", "uu-youth"] else "irodsResc"
70
69
  return template.substitute({"zone": zone, "email_address": email_address,
71
- "host": host, "resc": resc, "pam_scheme": pam_scheme})
70
+ "host": host, "resc": resc, "pam_scheme": "pam_password"})