mirror of
				https://github.com/ARM-software/workload-automation.git
				synced 2025-11-04 09:02:12 +00:00 
			
		
		
		
	Promote pandas to a mandatory dependency.
Pandas is already widely used in WA and devlib for fast numerical table manipulation in various instruments and output processors. Up to this point, it has been an optional dependency. Over the last couple of years, the package has become very wide spread, and is available in repos for virtually every major distro. There is now little reason not to require it as a mandatory dependency.
This commit is contained in:
		
				
					committed by
					
						
						Marc Bonnici
					
				
			
			
				
	
			
			
			
						parent
						
							dae4d9a934
						
					
				
				
					commit
					1fe899fd7c
				
			
							
								
								
									
										3
									
								
								setup.py
									
									
									
									
									
								
							
							
						
						
									
										3
									
								
								setup.py
									
									
									
									
									
								
							@@ -80,9 +80,10 @@ params = dict(
 | 
			
		||||
        'devlib',  # Interacting with devices
 | 
			
		||||
        'louie',  # callbacks dispatch
 | 
			
		||||
        'wrapt',  # better decorators 
 | 
			
		||||
        'pandas>=0.13.1',  # Data analysis and manipulation
 | 
			
		||||
    ],
 | 
			
		||||
    extras_require={
 | 
			
		||||
        'other': ['jinja2', 'pandas>=0.13.1'],
 | 
			
		||||
        'other': ['jinja2'],
 | 
			
		||||
        'test': ['nose', 'mock'],
 | 
			
		||||
        'mongodb': ['pymongo'],
 | 
			
		||||
        'notify': ['notify2'],
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user